/* ==========================================================================
   QPIX – Merged Stylesheet
   1. Reset
   2. Custom Properties
   3. Base / Typography
   4. Layout: Section & Block
   5. Grids & Flex Systems
   6. Header
   7. Footer
   8. Components: Cards, Banners, Buttons, Links, Tables
   9. Utilities
   10. Media Queries (@1200 → @900 → @768 → @550 → @480)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset (Meyer Reset v2.0 + button reset)
   -------------------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}

/* --------------------------------------------------------------------------
   2. Custom Properties
   -------------------------------------------------------------------------- */

:root {
    --accent-color: #ffaf38;

    --color_header_bg: #fff;
    --color_header_text: #111;

    --color_header_upper_bg: #222;
    --color_header_upper_text: #fff;
    --color_header_upper_link: #fff;
    --color_header_upper_link_hover: #ffaf38;

    /* Typography variant: Compact (active) */
    --h1-size: 2.2rem;   --h1-weight: 900; --h1-lh: 2.2rem; --h1-ls: -0.04rem; --h1-color: #222;
    --h2-size: 1.8rem;   --h2-weight: 700; --h2-lh: 1.8rem; --h2-ls: 0.04em;  --h2-color: #222;
    --h3-size: 1.45rem;  --h3-weight: 700; --h3-lh: 1.7rem; --h3-ls: 0.04em;  --h3-color: #222;
    --h4-size: 1.15rem;  --h4-weight: 700; --h4-lh: 1.5rem;                    --h4-color: #444;
    --h5-size: 1.05rem;  --h5-weight: 600; --h5-lh: 1.4rem;                    --h5-color: #555;
    --p-size: 1rem;      --p-weight: 500;  --p-lh: 1.6rem;                     --p-color: #444;
}

/* --------------------------------------------------------------------------
   3. Base / Typography
   -------------------------------------------------------------------------- */

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

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

a:hover {
    color: #ffaf38;
}

html {
    background-color: #fff;
    font-family: "Inter", "Inter Fallback", sans-serif;
    color: #222;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}

img.border {
    border: solid 1px #222;
}

img+h4,
img+h5 {
    margin-top: 1.2rem;
}

hr {
    border: 0;
    border-bottom: 1px solid #aaa;
    border-bottom: 1px solid #ddd;
    background: #fff;
    margin: 2rem 0;
}

hr.clear {
    border-bottom: 0px solid #aaa;
    margin: 1.5rem 0;
}

hr.space {
    margin: 50px 0;
}

hr.semi {
    border-bottom: 1px solid #ccc;
    width: 80%;
    margin: 20px auto;
}

hr.dash-grey {
    border-bottom: 1px solid #ccc;
    margin: 25px auto;
}

h1 {
    color: var(--h1-color);
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-weight: var(--h1-weight);
    letter-spacing: var(--h1-ls, normal);
    font-size: var(--h1-size);
    line-height: var(--h1-lh);
    text-transform: uppercase;
    text-align: left;
}

.h1-accent {
    position: relative;
    margin-top: 1.5rem;
    padding-bottom: 0.8rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.h1-accent::after {
    display: none;
}

h1+* {
    margin-top: 1.2rem;
}

h1+p {
    margin-top: 0.9rem;
}

h1+h2,
h1+h3 {
    margin-top: 2.4rem;
}

h2 {
    color: var(--h2-color);
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    letter-spacing: var(--h2-ls, normal);
    line-height: var(--h2-lh);
    text-transform: uppercase;
    text-align: left;
}

h2+* {
    margin-top: 1.2rem;
}

h3 {
    color: var(--h3-color);
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: var(--h3-size);
    font-weight: var(--h3-weight);
    letter-spacing: var(--h3-ls, normal);
    line-height: var(--h3-lh);
    text-transform: uppercase;
    text-align: left;
}

h3 svg {
    margin-bottom: -2px;
    margin-right: 5px;
}

h3+* {
    margin-top: 1.2rem;
}

h3+p {
    margin-top: 0.8rem;
}

h4 {
    color: var(--h4-color);
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
    letter-spacing: var(--h4-ls, normal);
    line-height: var(--h4-lh);
    text-transform: uppercase;
    text-align: left;
}

h4 svg {
    margin-bottom: -5px;
    margin-right: 5px;
}

h4+* {
    margin-top: 1rem;
}

h4+p.close {
    margin-top: 0.8rem;
}

p.subtitle {
    color: var(--h4-color);
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: var(--h4-size);
    font-weight: var(--h4-weight);
    letter-spacing: var(--h4-ls, normal);
    line-height: var(--h4-lh);
    text-transform: uppercase;
    text-align: left;
}

.subtitle+* {
    margin-top: 1rem;
}

.subtitle+p.close {
    margin-top: 0.8rem;
}

h5 {
    color: var(--h5-color);
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: var(--h5-size);
    font-weight: var(--h5-weight);
    letter-spacing: var(--h5-ls, normal);
    line-height: var(--h5-lh);
    text-transform: uppercase;
    text-align: left;
}

h5+* {
    margin-top: 1rem;
}

p {
    color: var(--p-color);
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    line-height: var(--p-lh);
    text-align: left;
}

p+* {
    margin-top: 1.2rem;
}

p+h2,
p+h3 {
    margin-top: 2.4rem;
}

p+h4 {
    margin-top: 2.0rem;
}

p+table {
    margin-top: 1.6rem;
}

p.weaker {
    font-size: 1em;
    font-weight: 400;
    font-style: italic;
    margin-top: 0.65rem;
}

p.close+p.close {
    margin-top: 1.0rem;
}

p+p.close {
    margin-top: 0.7rem;
}

p.smaller {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3rem;
}

span.weaker {
    display: block;
    font-size: 0.75em;
    font-family: 400;
    line-height: 1.2;
    color: #111;
}

strong {
    font-weight: 700;
}

ul {
    list-style-type: disc;
    list-style-position: inside;
    margin: 10px 0px 15px 0px;
}

ul+h4 {
    margin-top: 1.5rem;
}

li {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    text-indent: 20px;
}

li span {
    margin-top: 4px;
    font-weight: 400;
    font-style: italic;
    color: #aaa;
}

li+li {
    margin-top: 8px;
}

/* Tables */

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Source Sans 3', sans-serif;
}

table+table {
    margin-top: 1.2rem;
}

tr.space th {
    padding-top: 30px;
}

tr:nth-child(even) {
    background: #f8f8f8;
}

th {
    background: #222;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1rem 0.75rem;
    text-align: center;
    white-space: nowrap;
}

th:first-child {
    text-align: left;
    border-radius: 6px 0 0 0;
}

th:last-child {
    border-radius: 0 6px 0 0;
}

th:only-child {
    border-radius: 6px 6px 0 0;
}

td {
    padding: 0.95rem 0.75rem;
    font-size: 0.9rem;
    text-align: center;
    vertical-align: middle;
    font-variant-numeric: tabular-nums;
    border-bottom: 1px solid #e5e5e5;
}

td:first-child {
    text-align: left;
    font-weight: 600;
    color: #222;
}

td span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #666;
    line-height: 1.3;
    margin-top: 3px;
    margin-bottom: 0;
}

td a {
    font-weight: 700;
}

tr:last-child td:first-child {
    border-radius: 0 0 0 6px;
}

tr:last-child td:last-child {
    border-radius: 0 0 6px 0;
}

table.quad th+th {
    width: 15%;
}

table.quad td+td {
    width: 15%;
}

table.narrow {
    width: 70%;
    margin: 20px auto;
}

table.times th {
    text-align: center;
    font-size: 0.85rem;
}

table.times td {
    font-size: 0.8rem;
    font-weight: 500;
    width: 33%;
    padding: 0.85rem 0.75rem;
    text-align: center;
    line-height: 1;
}

table.times td span {
    font-weight: 700;
    color: inherit;
    font-size: inherit;
}

/* Profile Cards (ICC Profiles page) */

.profile-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-cards .group-heading {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    padding: 1.25rem 0 0.4rem 0.25rem;
}

.profile-cards .group-heading:first-child {
    padding-top: 0;
}

.profile-cards .card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: border-color 0.15s, background 0.15s;
}

.profile-cards .card:hover {
    border-color: #ddd;
    background: #f5f5f5;
}

.profile-cards .card-name {
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
    min-width: 0;
}

.profile-cards .card-process {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #222;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1.4;
}

.profile-cards .card-process.laser {
    background: #6b5b4f;
}

.profile-cards .card-download {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #222;
    padding: 0.35rem 0.75rem;
    border: 1.5px solid #222;
    border-radius: 5px;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.profile-cards .card-download:hover {
    background: #ffaf38;
    border-color: #ffaf38;
    color: #222;
}

.profile-cards .card-download.unavailable {
    color: #bbb;
    border-color: #ddd;
    pointer-events: none;
}

.profile-cards .card-download svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Opening Hours (Calendar Blocks) */

.hours-blocks {
    display: flex;
    gap: 0;
    margin: 1.5rem 0 3rem;
}

.hours-blocks .day-block {
    flex: 1;
    text-align: center;
    padding: 1.2rem 0.5rem;
    border: 1px solid #eee;
    border-right: none;
}

.hours-blocks .day-block:first-child {
    border-radius: 3px 0 0 3px;
}

.hours-blocks .day-block:last-child {
    border-right: 1px solid #eee;
    border-radius: 0 3px 3px 0;
}

.hours-blocks .day-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.5rem;
}

.hours-blocks .day-hours {
    font-size: 0.85rem;
    font-weight: 600;
    color: #222;
}

.hours-blocks .day-block.closed-block {
    background: #fafafa;
}

.hours-blocks .day-block.closed-block .day-hours {
    color: #aaa;
    font-weight: 500;
}

.hours-exceptions .season-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    padding: 1.5rem 0 0.6rem;
}

.hours-exceptions .season-label:first-child {
    padding-top: 0;
}

.hours-exceptions .exc-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-exceptions .exc-row:last-child {
    border-bottom: none;
}

.hours-exceptions .exc-date {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    min-width: 5.5rem;
    text-align: center;
}

.hours-exceptions .exc-name {
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.hours-exceptions .exc-status {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hours-exceptions .exc-status.open {
    background: #e8f5e9;
    color: #2e7d32;
}

.hours-exceptions .exc-status.closed {
    background: #fff3e0;
    color: #c56200;
}

/* Buttons */

button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.8rem;
    font-family: "Source Sans 3";
    padding: 1rem 2.5rem;
    background: #ffaf38;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    border-radius: 6px;
    transition: background 0.25s ease;
}

button:hover {
    background: #e89e2f;
}

button a,
button a:hover {
    color: inherit;
    text-decoration: none;
}

button+* {
    margin-top: 1.2rem;
}

/* --------------------------------------------------------------------------
   4. Layout: Section & Block
   -------------------------------------------------------------------------- */

.section--bleed-fix {
    padding: 0px clamp(3vw, 4vw, 35px);
}

.section--dark {
    background-color: #f8f8f8;
    color: #222;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.section--dark h2 {
    color: #222;
}

.section--darker {
    background-color: #333;
}

.section--darker h2,
.section--darker h3 {
    color: #eee;
}

.section--darker p {
    color: #eee;
}

.section--darker a {
    color: #ffcf7e;
    text-decoration: underline;
    text-decoration-color: rgba(255, 207, 126, 0.35);
    text-underline-offset: 2px;
}

.section--darker a:hover {
    color: #ffaf38;
    text-decoration-color: #ffaf38;
}

.certified-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    max-width: 740px;
    margin: 0 auto;
}

.certified-row svg {
    flex-shrink: 0;
}

.certified-row__divider {
    width: 1px;
    height: 48px;
    background: #555;
    flex-shrink: 0;
}

.certified-row__text {
    flex: 1;
}

.certified-row__label {
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.3rem;
}

.certified-row__text p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.45rem;
    text-align: left;
}

/* CTA Block – isolated via explicit overrides on every property
   that global button / .link-arrow / media queries could set */

.section:has(.cta-block) {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-block h2,
.cta-block h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.cta-block p {
    max-width: 540px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}

.cta-block button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    width: 100%;
    max-width: 380px;
    padding: 0.95rem 2rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #222;
    background: #ffaf38;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}

.cta-block button a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    line-height: inherit;
}

.cta-block button svg {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-block button:hover {
    background: #e89e2f;
}

.cta-block .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 1.2rem 0 0 0;
    padding: 0;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 400;
    color: #bbb;
    text-transform: none;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
    line-height: 1.2;
}

.cta-block .link-arrow:hover {
    color: #ffaf38;
}

.cta-block .link-arrow svg {
    display: inline-block;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.section--muted {
    background-color: #fafafa;
    color: #222;
}

.section--about p {
    font-size: 0.92rem;
    line-height: 1.55;
}

.section--border-top {
    border-top: solid 1px #ddd;
}

.section--border-bottom {
    border-bottom: solid 1px #666;
}

.section--padded {
    padding-top: 2.9rem;
    padding-bottom: 2.9rem;
}

.section--padded-header {
    padding-top: 2.0rem;
    padding-bottom: 2.5rem;
}

.section--padded-tight {
    padding-top: 0.8rem;
    padding-bottom: 2.5rem;
}

.section--padded-icons {
    padding-top: 2.8rem;
    padding-bottom: 2.5rem;
}

.section--padded-title {
    padding-top: 3.8rem;
    padding-bottom: 4.0rem;
}

.section--padded-cards {
    padding-top: 3.0rem;
    padding-bottom: 3.8rem;
}

hr + .section--padded {
    padding-top: 1.0rem;
}

hr + .section--padded-title {
    padding-top: 2.0rem;
}

.section--padded-title + hr {
    margin-top: 0;
}

.section--margin-top {
    margin-top: 3rem;
}

.block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px clamp(3vw, 4vw, 35px);
}

.block--bleed {
    padding: 0px 0px;
}

.block--center p,
.block--center h1,
.block--center h2,
.block--center h3,
.block--center h4,
.block--center h5,
.block--center .subtitle {
    text-align: center;
}

.block--center p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.block+.block {
    margin-top: 3rem;
}

/* --------------------------------------------------------------------------
   5. Grids & Flex Systems
   -------------------------------------------------------------------------- */

/* Grid 2 */

.grid-2 {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 350px);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: center;
}

/* Grid 2 Feature */

.grid-2-feature {
    text-align: center;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    align-content: space-evenly;
}

.grid-2-feature p {
    align-self: center;
    justify-self: center;
}

.grid-2-feature+.grid-2-feature {
    margin-top: 0.8rem;
}

.grid-2-feature+.grid-2-feature.space {
    margin-top: 2.5rem;
}

.grid-2-feature svg {
    margin-bottom: 10px;
}

/* Grid 2 Product (text + image side by side) */

.grid-2-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    align-items: center;
}

.grid-2-product img {
    width: 100%;
    height: auto;
}

.grid-2-product h2,
.grid-2-product h3 {
    margin-bottom: 0.3rem;
}

.grid-2-product p {
    margin-bottom: 1rem;
}

/* Spec Grid */

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 10px;
    margin-top: 1rem;
}

.spec-grid__item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.spec-grid__item strong {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}

.spec-grid__item span {
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

/* Grid 2 Product – Editorial variant */

.grid-2-product--editorial {
    grid-template-columns: 55fr 45fr;
    gap: 2.5rem;
}

.grid-2-product--editorial-reversed {
    grid-template-columns: 45fr 55fr;
}

.grid-2-product--editorial .editorial-text::before,
.grid-2-product--editorial-reversed .editorial-text::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.spec-inline {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.6;
}

.spec-inline .spec-entry strong {
    font-weight: 600;
    color: #444;
}

.spec-inline .spec-entry + .spec-entry::before {
    content: ' · ';
    color: #ccc;
}

/* Product Block (Option B – bordered text blocks, side-by-side on wide screens) */

.grid-2-product-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-block {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 2.5rem 2rem;
}

.product-block .editorial-text::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.product-block h2,
.product-block h3 {
    margin-bottom: 0.5rem;
}

.product-block p {
    margin-bottom: 1rem;
}

/* Template Gallery */

.template-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 1.5rem;
}

.template-gallery a {
    display: block;
}

.template-gallery img {
    width: 140px;
    height: auto;
}

/* Grid 3 */

.grid-3 {
    max-width: 1200px;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.grid-3 hr {
    display: none;
}

/* Grid 3 Overlay */

.grid-3-overlay {
    max-width: 1200px;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

/* Grid 4 */

.grid-4 {
    margin-top: 2.0rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
}

.grid-4.tricon {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4.headerless {
    margin-top: 0rem;
}

.grid-4 h4 {
    margin-top: 0.5rem;
}

.grid-4 h4+p {
    margin-top: 0.5rem;
}

/* Flex 2 */

.flex-2 {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    text-align: left;
}

.flex-2 p,
.flex-2 h4 {
    text-align: left;
}

.flex-2>div {
    width: 50%;
}

/* Flex 2 Narrow */

.flex-2-narrow {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
    width: 80%;
    margin: 1.2rem auto;
}

.flex-2-narrow svg {
    margin-top: 5px;
}

/* Columns 2 */

.columns-2 {
    column-count: 2;
    column-gap: 30px;
}

/* Tag list */

.tag-list {
    display: flex;
    justify-content: center;
    font-size: 0.85em;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tag-list+.tag-list {
    margin-top: 10px;
}

/* Info label */

.info-label div {
    font-size: 0.6rem;
    color: #555;
    font-weight: 500;
    margin-top: 0px;
    text-transform: uppercase;
}

.info-label div+div {
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 8px;
    color: #222;
}

/* Row & columns */

.row {
    display: flex;
}

.row+.row {
    margin-top: 1rem;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: calc(100% / 3);
}

.col-4 {
    width: 25%;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

header {
    width: 100%;
    margin: 0 auto;
    color: var(--color_header_text);
    background-color: var(--color_header_bg);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Announcement bubble */

.announce {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: #fff;
    color: #333;
    padding: 12px 0 12px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    animation: announce-pop 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.announce__icon {
    width: 18px;
    height: 18px;
    background: #fff3e0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 10px;
}
.announce__text {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.announce strong { color: #111; }
.announce a { color: #e67e22; font-weight: 700; }
.announce a:hover { text-decoration: underline; }
.announce__close {
    background: none;
    border: none;
    border-left: 0px solid #eee;
    color: #ccc;
    cursor: pointer;
    padding: 0 12px 0 0;
    margin: -12px 0 -12px 8px;
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    transition: color 0.2s;
}
.announce__close:hover { color: #444; background: none; }

header.header--compact .announce {
    display: none;
}

.header__bar {
    background-color: var(--color_header_upper_bg);
    color: var(--color_header_upper_text);
    border-bottom: solid 3px #000;
    position: relative;
    max-height: 100px;
    transition: max-height 0.3s ease, border-width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}

.header__bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px clamp(3vw, 4vw, 35px);
    display: flex;
}

.header__bar-item {
    display: flex;
    margin: 10px 0;
    font-size: 0.75rem;
    font-weight: 500;
}

.header__bar-item a:hover {
    color: var(--color_header_upper_link_hover);
}

.header__bar-item a {
    color: var(--color_header_upper_link);
}

.header__bar-item span {
    font-weight: 300;
}

.header__bar-item.right {
    margin-left: auto;
    margin-right: 30px;
}

.header__bar-item svg {
    fill: #aaa;
}

.header__bar-item div {
    margin-top: 6px;
    margin-left: 5px;
}

.header__logo-wrap {
    text-align: center;
    padding: 25px 0px 10px 0px;
    transition: padding 0.3s ease;
}

.header__logo {
    font-family: "Afacad", "Afacad Fallback", sans-serif;
    font-weight: 600;
    font-size: 3.5rem;
    color: #222;
    transition: font-size 0.3s ease, color 0.3s ease;
}

.header__logo:hover {
    color: var(--color_header_upper_link_hover);
}

nav {
    font-family: "Inter", "Inter Fallback", sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: center;
    margin: 6px 0;
    transition: margin 0.3s ease;
}

nav a {
    line-height: 2;
    padding: 8px 4px;
    color: #222;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--color_header_upper_link_hover);
}

/* Compact header state */

header.header--compact {
    background-color: var(--color_header_upper_bg);
    color: var(--color_header_upper_text);
}

header.header--compact .header__bar {
    width: 100%;
    max-height: 0;
    border-bottom-width: 0;
}

header.header--compact .header__logo-wrap {
    padding: 12px 0 4px 0;
}

header.header--compact .header__logo {
    font-size: 1.8rem;
    color: #fff;
}

header.header--compact .header__logo:hover {
    color: var(--color_header_upper_link_hover);
}

header.header--compact nav {
    margin: 0 0 0 0;
}

header.header--compact nav a {
    color: #fff;
    line-height: 2;
    padding: 8px 4px;
}

header.header--compact nav a:hover {
    color: var(--color_header_upper_link_hover);
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */

footer {
    margin-top: auto;
    text-align: center;
    background-color: #333;
    color: #fff;
    max-width: 100vw;
}

footer a {
    color: #ddd;
    font-weight: 500;
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2.6rem 0 0 0;
    font-size: 0.825rem;
}

.footer__partners {
    margin: 2rem 0 0.3rem 0;
}

.footer__certified-link {
    margin: 0 0 1.4rem 0;
}

.footer__certified-link a {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__certified-link a:hover {
    color: #fff;
}

.footer__copyright {
    margin: 15px 0;
    padding-bottom: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #777;
}

/* --------------------------------------------------------------------------
   8. Components: Cards, Banners, Buttons, Links, Tables
   -------------------------------------------------------------------------- */

/* Card Image */

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    margin-bottom: 0;
    transition: transform 0.4s ease;
}

.card-image:hover img {
    transform: scale(1.04);
}

.card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.card-image div.overlay-text {
    position: absolute;
    bottom: 14px;
    left: 16px;
    top: auto;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    font-size: 1.05rem;
    font-weight: 700;
}

.card-image div.overlay-text.dark {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.card-image div.overlay-text span {
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 3px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #ffaf38;
}

.card-image + .row {
    display: grid;
}

.card-image + .row .info-label {
    width: auto;
    padding: 14px 16px;
    background: #fff;
    border-right: 1px solid #eee;
}

.card-image + .row .info-label:last-child {
    border-right: none;
}

.card-image + .row .info-label div {
    font-size: 0.55rem;
    color: #999;
}

.card-image + .row .info-label div+div {
    font-size: 0.75rem;
    color: #222;
    margin-top: 2px;
}

.grid-3 .card-image + .row {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 .card-image + .row {
    grid-template-columns: repeat(2, 1fr);
}

.card-image.rectangle img {
    margin-bottom: 10px;
}

.card-image.rectangle::after {
    display: none;
}

.card-image.rectangle:hover img {
    transform: none;
}

.card-image.rectangle + .row {
    display: flex;
    border-left: none;
}

.card-image__title {
    margin-bottom: 15px;
    color: #333;
    text-shadow: none;
    font-size: 1.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-image__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    text-shadow: none;
}

.card-image__link div {
    padding-top: 2px;
}

a.card-image__link {
    color: #000;
}

a.card-image__link:hover {
    color: #555;
}

.card-image__link svg {
    flex: 0 0 24px;
    fill: #000;
}

/* Card Overlay */

/* --- Original (variation 1) ---
.card-overlay {
    position: relative;
    color: white;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px black;
}

.card-overlay:hover {
    filter: brightness(105%);
}

.card-overlay a {
    color: white;
}

.card-overlay.dark a {
    color: #fff;
}

.card-overlay a:hover {
    color: #ffaf38;
}

.card-overlay__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
--- End original --- */

/* --- Variation 19: Bottom Left Bold ---
.card-overlay {
    position: relative;
    overflow: hidden;
}

.card-overlay img {
    transition: transform 0.4s ease;
}

.card-overlay:hover img {
    transform: scale(1.03);
}

.card-overlay a {
    color: white;
}

.card-overlay.dark a {
    color: #fff;
}

.card-overlay::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    pointer-events: none;
}

.card-overlay__text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: "Inter", "Inter Fallback", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    z-index: 1;
    transition: color 0.3s ease;
}

.card-overlay:hover .card-overlay__text {
    color: #ffaf38;
}
--- End variation 19 --- */

/* Variation 31: Bottom Left + BG Chip */

.card-overlay {
    position: relative;
    overflow: hidden;
}

.card-overlay img {
    transition: transform 0.35s ease;
}

.card-overlay:hover img {
    transform: scale(1.03);
}

.card-overlay a {
    color: white;
}

.card-overlay.dark a {
    color: #fff;
}

.card-overlay__text {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-family: "Inter", "Inter Fallback", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 1;
    transition: background 0.3s ease, color 0.3s ease;
}

.card-overlay:hover .card-overlay__text {
    background: #ffaf38;
    color: #222;
}

/* Grid Order */

.grid-order {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid #e8e7e4;
    border-radius: 6px;
    overflow: hidden;
}

/* Card Order */

.card-order {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
    padding: 1.1rem 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.card-order:nth-child(even) {
    background: #fafafa;
}

.card-order:hover {
    border-left-color: #ffaf38;
    background: #fff8ed;
}

.card-order__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    margin-right: 1.25rem;
    align-self: center;
}

.card-order__icon svg {
    width: 40px;
    height: 40px;
}

.card-order__title {
    grid-column: 2;
    grid-row: 1;
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}

.card-order__desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.78rem;
    font-weight: 500;
    color: #999;
    line-height: 1.4;
}

.card-order__cta {
    grid-column: 5;
    grid-row: 1 / 3;
    align-self: center;
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 9px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #222;
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.card-order__cta:hover {
    background: #ffaf38;
    color: #222;
}

.card-order__info {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    display: inline-block;
    padding: 0 1rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: #999;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.card-order__info:hover {
    color: #ffaf38;
}

.card-order__cta-old {
    grid-column: 4;
    grid-row: 1 / 3;
    align-self: center;
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 9px 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    color: #999;
    border: 1px solid #ddd;
    font-family: inherit;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
    white-space: nowrap;
}

.card-order__cta-old:hover {
    border-color: #ffaf38;
    color: #ffaf38;
}

/* Hero Banner */

.hero-banner {
    position: relative;
    color: white;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px black;
}

.hero-banner:hover {
    filter: brightness(95%);
}

.hero-banner__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero-banner a {
    color: white;
}

.hero-banner a:hover {
    color: #ffaf38;
}

/* Image utilities */

.img-border {
    border: solid 1px #666;
}

.img-border--light {
    border: solid 1px #ddd;
}

.img-center {
    display: block;
    margin: 0 auto;
}

/* Banner Promo */

.banner-promo {
    display: flex;
    gap: 40px;
}

.banner-promo__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
}

.banner-promo__text * {
    min-width: 0;
    align-self: center;
}

.banner-promo__text div {
    font-family: "Source Sans 3";
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
}

.banner-promo__text div+div {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
}

.banner-promo__images {
    display: flex;
    width: 58%;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 15px;
}

.banner-promo__images * {
    min-width: 0;
    align-self: center;
}

.banner-promo img {
    box-shadow: 0px 1px 2px #aaa;
}

/* Banner Button */

.btn-banner:hover {
    background-color: #ffaf38;
}

.btn-banner {
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    text-transform: uppercase;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    background-color: #333;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    border: none;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 2.2rem;
    cursor: pointer;
}

/* Link Arrow */

.link-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    margin-top: 1.8rem;
    color: #fff;
}

.link-arrow.light {
    color: #000;
    font-weight: 500;
    margin-top: 1.5rem;
}

a.link-arrow:hover {
    color: #ffaf38;
}

a.link-arrow.light:hover {
    color: #ffaf38;
}

.link-arrow div {
    padding-top: 2px;
}

.link-arrow svg {
    flex: 0 0 24px;
}

.link-arrow.light svg {
    fill: #000;
}

/* Link Stacked (two-line CTA) */

.link-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    gap: 0.55rem;
    text-align: center;
    margin-top: 2.5rem;
}

.link-stacked .link-stacked__heading {
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.link-stacked .link-stacked__sub {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    transition: color 0.2s;
}

a.link-stacked:hover .link-stacked__heading {
    color: #ffaf38;
}

a.link-stacked:hover .link-stacked__sub {
    color: #666;
}

/* Icon Row */

.icon-row {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 3rem;
    text-align: center;
}

.icon-row div {
    font-size: 0.85rem;
    font-weight: 500;
    padding-top: 0.5rem;
}

/* Feature Row */

.feature-row {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.feature-row>div {
    width: calc(100% / 3);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem 1.5rem 1.8rem;
}

svg.spaced {
    margin-bottom: 15px;
}

/* Contact Minimal */

.contact-minimal {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    text-align: center;
}

.contact-minimal > div {
    flex: 1;
}

.contact-minimal svg {
    margin-bottom: 0.6rem;
    opacity: 0.5;
}

.contact-minimal h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.contact-minimal table {
    margin: 0 auto;
    width: 100%;
}

.contact-minimal table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* FAQ (details/summary) — Left Accent Bar */

.faq {
	max-width: 720px;
	margin: 2rem auto 0;
	text-align: left;
}

.faq details {
	border-bottom: 1px solid #e5e5e5;
	border-left: 3px solid transparent;
	padding-left: 1.2rem;
	transition: border-color 0.25s, background 0.25s;
}

.faq details[open] {
	border-left-color: var(--accent-color);
	background: linear-gradient(90deg, rgba(255,175,56,0.04) 0%, transparent 40%);
}

.faq summary {
	font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
	font-weight: 600;
	font-size: 1.08rem;
	padding: 1.15rem 2rem 1.15rem 0;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.2s;
}

.faq summary:hover {
	color: var(--accent-color);
}

.faq summary::after {
	content: "+";
	font-size: 1.3rem;
	font-weight: 400;
	color: #888;
	flex-shrink: 0;
	margin-left: 1rem;
}

.faq details[open] summary::after {
	content: "\2212";
	color: var(--accent-color);
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq details p {
	padding: 0 0 1.2rem;
	line-height: 1.65;
	color: #444;
	font-size: 0.95rem;
	text-align: left;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.faq details .link-arrow {
	color: var(--accent-color);
	font-size: 0.92rem;
	font-weight: 600;
	margin-top: -0.4rem;
	padding-bottom: 1.2rem;
	justify-content: flex-start;
}

.faq details .link-arrow:hover {
	color: #d4891a;
}

.faq details .link-arrow svg {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}


/* --------------------------------------------------------------------------
   9. Utilities
   -------------------------------------------------------------------------- */

.spacer {
    height: 50px;
    margin-top: 2rem;
    background-color: #fff;
}

.show-at-medium {
    display: none;
}

/* Delivery KK */

.delivery-kk {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 2.5rem auto 0;
}

.delivery-kk__col {
    flex: 1;
    text-align: center;
    padding: 1.5rem 2rem;
}

.delivery-kk--multi .delivery-kk__col {
    padding: 2rem 2.5rem;
}

.delivery-kk__sep {
    width: 1px;
    height: 100px;
    background: #ddd;
    flex-shrink: 0;
}

.delivery-kk--multi .delivery-kk__sep {
    height: auto;
    align-self: stretch;
}

.delivery-kk__col svg {
    margin-bottom: 12px;
}

.delivery-kk__col h4 {
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
}

.delivery-kk__time {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    line-height: 1.5;
}

.delivery-kk__time strong {
    display: block;
    font-size: 2.6rem;
    font-weight: 900;
    color: #222;
    line-height: 1;
    margin-top: 0.3rem;
    margin-bottom: 0.35rem;
}

.delivery-kk--multi {
    max-width: 600px;
}

.delivery-kk--multi .delivery-kk__item {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid #eee;
}

.delivery-kk--multi .delivery-kk__item:first-of-type {
    margin-top: 1.4rem;
    border-top: none;
    padding-top: 0;
}

.delivery-kk--multi .delivery-kk__item .delivery-kk__time strong {
    font-size: 1.6rem;
    margin-top: 0.65rem;
    margin-bottom: 0.35rem;
}

.delivery-kk__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.4rem;
}

.delivery-kk--multi .delivery-kk__item .delivery-kk__time {
    margin-top: 0;
}

/* --------------------------------------------------------------------------
   11. Timeline (fotolabb)
   -------------------------------------------------------------------------- */

.timeline {
    position: relative;
    padding-left: 0;
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.timeline-item + .timeline-item {
    margin-top: 2.5rem;
}

.timeline-date {
    flex: 0 0 100px;
    text-align: right;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    padding-top: 4px;
    position: relative;
}

.timeline-date::after {
    content: "";
    position: absolute;
    right: -1.35rem;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffaf38;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ddd;
}

.timeline-line {
    position: absolute;
    left: calc(100px + 2.5rem - 1.35rem + 4px);
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
    z-index: -1;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    text-transform: none;
    margin-bottom: 0.4rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.55rem;
}

/* --------------------------------------------------------------------------
   12. Department Cards (fotolabb)
   -------------------------------------------------------------------------- */

.dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dept-card {
    text-align: center;
    padding: 2rem 1.2rem;
    background: #fff;
    border: 1px solid #e8e7e4;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.dept-card:hover {
    border-color: #ffaf38;
}

.dept-card svg {
    margin-bottom: 0.8rem;
}

.dept-card h4 {
    text-align: center;
}

.dept-card p {
    font-size: 0.85rem;
    line-height: 1.4rem;
    text-align: center;
    margin-top: 0.5rem;
    color: #666;
}

.dept-card a {
    display: block;
    color: inherit;
}

/* Staff cards */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.staff-card {
    text-align: center;
    background: linear-gradient(to bottom, #f5f5f5 40%, #fff 40%);
    border-radius: 12px;
    padding: 2rem 1.5rem 1.5rem;
    border: 1px solid #eee;
}

.staff-card__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.staff-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-card__role {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.3rem;
}

.staff-card p {
    font-size: 0.9rem;
    line-height: 1.45rem;
    margin-top: 0.6rem;
    color: #555;
}

.staff-card a {
    display: inline-block;
    font-size: 0.82rem;
    color: #ffaf38;
    font-weight: 600;
    margin-top: 0.7rem;
}

.section--darker .staff-card h4 { color: #fff; }
.section--darker .staff-card p { color: #aaa; }
.section--darker .staff-card a { color: #ffaf38; }
.section--darker .staff-card__photo { border: 2px solid #444; }
.section--darker h2 { color: #fff; }

/* Section divider – full-width gradient fade */

.divider-fade {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 1rem auto 3.5rem;
}

/* Icon accent – refined vertical layout with accent bar */

.icon-accent > div {
    text-align: center;
}

.icon-accent {
    padding-top: 0.4rem;
    padding-bottom: 1rem;
}

.icon-accent svg {
    width: 40px;
    height: 40px;
    margin-bottom: 0.6rem;
}

.icon-accent svg + h4::before {
    display: none;
}

.icon-accent h4 {
    font-size: 0.95rem;
}

.icon-accent p {
    font-size: 0.82rem;
    line-height: 1.35rem;
    margin-top: 0.4rem;
}

/* Spec Flat – light inline row with dividers (matches ci-flat) */

.spec-flat {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 0;
    margin: 0 auto;
    font-family: 'Source Sans 3', sans-serif;
    text-align: center;
}

.spec-flat-item {
    padding: 0 1.5rem;
}

.spec-flat-item + .spec-flat-item {
    border-left: 1px solid #ddd;
}

.spec-flat-k {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 0.15rem;
}

.spec-flat-v {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

/* Company info bar – inline label/value pairs */

.ci-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem 1.6rem;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    color: #777;
}

.ci-bar span {
    white-space: nowrap;
}

.ci-bar strong {
    font-weight: 600;
    color: #555;
}

/* Company info – flat inline row */

.ci-flat {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 0;
    margin: 0 auto;
    font-family: 'Source Sans 3', sans-serif;
    text-align: center;
}

.ci-flat-item {
    padding: 0 1.5rem;
}

.ci-flat-item + .ci-flat-item {
    border-left: 1px solid #ddd;
}

.ci-flat-k {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 0.15rem;
}

.ci-flat-v {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

/* CTA Button – standalone call-to-action */

.button {
    display: inline-block;
    padding: 16px 38px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #222;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.button:hover {
    background: #ffaf38;
    color: #222;
}

/* Terms Page */

.terms-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #222;
}

.terms-header p {
    margin-top: 1rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #777;
    font-style: italic;
    text-align: center;
}

.term {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0 1.2rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.term:last-of-type,
.term--company,
.term:has(+ .terms-footer) {
    border-bottom: none;
}

.term-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ddd;
    line-height: 1;
    padding-top: 0.1rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.term-body h4 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.term-body h4 svg {
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    opacity: 0.4;
}

.term-body h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-top: 1.3rem;
    margin-bottom: 0.25rem;
}

.term-body p {
    margin-top: 0.5rem;
}

.term--company .info-grid {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 2rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #777;
}

.term--company .term-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #bbb;
    margin-top: 0.45rem;
    margin-bottom: 0.15rem;
}

.term--company .info-grid a {
    color: #777;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}
.term--company .info-grid a:hover {
    color: #222;
    border-color: #222;
}

.terms-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #222;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.terms-footer a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.15s;
}
.terms-footer a:hover { color: #b08030; }
.terms-footer a svg { width: 16px; height: 16px; opacity: 0.4; }

/* Step Cards */
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem; text-align: center; }
.step-card { background: #fafafa; border: 1px solid #eee; border-radius: 10px; padding: 2rem 1.2rem 1.6rem; }
.step-card__number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent-color); color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.step-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.82rem; line-height: 1.35rem; }

/* Block Narrow */
.block--narrow { max-width: 680px; margin-left: auto; margin-right: auto; }

/* Steps List */
.steps-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; margin-bottom: 1.5rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step__number { flex: 0 0 36px; height: 36px; border-radius: 50%; background: var(--accent-color); color: #fff; font-size: 0.95rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.step__text { font-size: 0.92rem; line-height: 1.55; padding-top: 6px; }

/* Format Cards */
.format-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.5rem 0 2rem; }
.format-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; padding: 1.4rem 1.2rem; }
.format-card__name { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: var(--accent-color); padding: 3px 10px; border-radius: 4px; margin-bottom: 0.7rem; }
.format-card p { font-size: 0.84rem; line-height: 1.45; margin-bottom: 0; color: #555; }

/* Tip Box */
.tip-box { background: #fff; border: 1px solid #e0e0e0; border-left: 3px solid var(--accent-color); border-radius: 0 10px 10px 0; padding: 1.2rem 1.4rem; margin-bottom: 1rem; }
.tip-box p { font-size: 0.88rem; line-height: 1.5; margin-bottom: 0; }
.tip-box strong { color: #222; }

/* Guide cards */
.guide-card {
    display: block;
    text-align: left;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid #e8e7e4;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
    text-decoration: none;
}
.guide-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.guide-card h2,
.guide-card h3 {
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}
.guide-card:hover h2,
.guide-card:hover h3 {
    color: var(--accent-color);
}
.guide-card p {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #666;
    text-align: left;
    margin: 0;
}

/* Review Carousel */
.review-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.review-carousel::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 calc(33.333% - 14px); scroll-snap-align: start; background: #fafafa; border: 1px solid #eee; border-radius: 10px; padding: 1.8rem 1.5rem 1.4rem; min-width: 0; }
.review-card__stars { color: #ffaf38; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-card__text { font-style: italic; font-size: 0.95rem; line-height: 1.5rem; margin-bottom: 0.8rem; }
.review-card__author { font-weight: 700; font-size: 0.9rem; }
.review-card__source { font-size: 0.78rem; color: #888; margin-top: 0.2rem; }

/* Error page */

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 1rem 1.5rem;
    text-align: center;
}

.error-page__code {
    font-family: "Source Sans 3", "Source Sans 3 Fallback", sans-serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: #ddd;
    margin-bottom: 1rem;
}

.error-page h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.error-page h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #222;
}

.error-page > p {
    max-width: 400px;
}

.error-page button {
    margin-top: 1.8rem;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    background: #222;
    color: #fff;
}

.error-page button:hover {
    background: #444;
}

/* --------------------------------------------------------------------------
   Form Guide (Filmpåse beställningsformulär)
   -------------------------------------------------------------------------- */

.form-guide {
	background: #fff;
	padding: clamp(2.8rem, 6vw, 4.5rem) 0;
	border-top: 1px solid #ddd;
}

.form-guide__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(3vw, 4vw, 35px);
}

.form-guide__header {
	text-align: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.form-guide__title {
	font-family: "Source Sans 3", sans-serif;
	font-size: clamp(1.6rem, 3vw, 1.8rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #222;
	line-height: 1.1;
}

.form-guide__subtitle {
	font-family: "Source Sans 3", sans-serif;
	font-size: clamp(0.9rem, 1.4vw, 1rem);
	font-weight: 500;
	color: #888;
	margin-top: 0.8rem;
	line-height: 1.6;
}

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

.form-option {
	display: grid;
	grid-template-columns: 3.2rem 1.15fr 1fr;
	gap: clamp(1rem, 2vw, 1.8rem);
	align-items: start;
	padding: clamp(1.2rem, 2.5vw, 1.6rem) 0;
	border-bottom: 1px solid #eee;
}

.form-option:first-child {
	padding-top: 0;
}

.form-option:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.form-option__num {
	font-family: "Source Sans 3", sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--accent);
	line-height: 1;
	padding-top: 0.15rem;
	text-align: center;
}

.form-option__image-wrap {
	position: relative;
}

.form-option__image {
	border: 1px solid #ddd;
	border-radius: var(--radius);
	display: block;
	max-width: 501px;
	width: 100%;
}

.form-option__body {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding-top: 0.1rem;
}

.form-option__label {
	font-family: "Source Sans 3", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #222;
}

.form-option__desc {
	font-family: "Source Sans 3", sans-serif;
	font-size: clamp(0.88rem, 1.2vw, 0.95rem);
	font-weight: 500;
	line-height: 1.55;
	color: #555;
}

.form-option__desc strong {
	color: #222;
	font-weight: 700;
}

.form-option__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
}

.form-option__tag {
	font-family: "Inter", sans-serif;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 0.2rem 0.5rem;
	border-radius: 3px;
	border: 1px solid #e5e5e5;
	color: #777;
	background: #fafafa;
}

/* --------------------------------------------------------------------------
   10. Media Queries
   -------------------------------------------------------------------------- */

@media screen and (max-width: 1200px) {
    /* Typography */
    h1 {
        font-size: clamp(1.8rem, 4vw + 0.5rem, var(--h1-size));
        line-height: clamp(2.0rem, 3.2vw, var(--h1-lh));
    }

    h1+* { margin-top: clamp(0.7rem, 1.467vw, 1.1rem); }

    h2 {
        font-size: clamp(1.6rem, 3vw + 0.2rem, var(--h2-size));
        line-height: clamp(1.8rem, 2.667vw, var(--h2-lh));
    }

    h2+* { margin-top: clamp(0.7rem, 1.467vw, 1.1rem); }

    h3 {
        font-size: clamp(1.2rem, 2.2vw + 0.1rem, var(--h3-size));
        line-height: clamp(1.55rem, 2.667vw, var(--h3-lh));
    }

    h3+* { margin-top: clamp(0.7rem, 1.467vw, 1.2rem); }
    h3+p { margin-top: clamp(0.5rem, 1.067vw, 0.8rem); }

    h4 {
        font-size: clamp(1.1rem, 1.667vw, var(--h4-size));
        line-height: clamp(1.55rem, 2.467vw, var(--h4-lh));
    }

    h4+* { margin-top: clamp(0.7rem, 1.333vw, 1rem); }

    p.subtitle {
        font-size: clamp(1.1rem, 1.667vw, var(--h4-size));
        line-height: clamp(1.55rem, 2.467vw, var(--h4-lh));
    }

    .subtitle+* { margin-top: clamp(0.7rem, 1.333vw, 1rem); }

    h5 { font-size: clamp(1rem, 1.8vw + 0.1rem, var(--h5-size)); }

    p {
        font-size: clamp(0.95rem, 1.4vw, var(--p-size));
        line-height: clamp(1.45rem, 2.333vw, var(--p-lh));
    }

    p+* { margin-top: clamp(0.7rem, 1.467vw, 1.1rem); }
    p+h4 { margin-top: clamp(0.7rem, 1.467vw, 1.2rem); }
    img+h4, img+h5 { margin-top: clamp(0.7rem, 1.467vw, 1.1rem); }

    /* Tables */
    :nth-child(1 of .td-hide-sm) { display: none; }
    :nth-child(1 of .td-hide-canvas) { display: none; }

    th {
        font-size: clamp(0.7rem, 1.067vw, 0.8rem);
        padding: clamp(0.5rem, 1.2vw, 1rem) clamp(0.4rem, 1vw, 0.75rem);
    }

    td {
        font-size: clamp(0.75rem, 1.133vw, 0.9rem);
        padding: clamp(0.4rem, 1vw, 0.7rem) clamp(0.4rem, 1vw, 0.75rem);
    }

    table+table { margin-top: clamp(0.7rem, 1.467vw, 1.2rem); }
    hr.dashx2 { max-width: 80vw; }

    /* Section spacing */
    .section--padded {
        padding-top: clamp(1.5rem, 3.867vw, 2.9rem);
        padding-bottom: clamp(1.5rem, 3.867vw, 2.9rem);
    }

    .section--padded-tight {
        padding-top: clamp(0.4rem, 1.067vw, 0.8rem);
        padding-bottom: clamp(1.5rem, 3.333vw, 2.5rem);
    }

    .section--padded-header {
        padding-top: clamp(1.2rem, 2.667vw, 2.0rem);
        padding-bottom: clamp(1.5rem, 3.333vw, 2.5rem);
    }

    .section--padded-icons {
        padding-top: clamp(1.6rem, 3.733vw, 2.8rem);
        padding-bottom: clamp(1.5rem, 3.333vw, 2.5rem);
    }

    .section--padded-title {
        padding-top: clamp(2.2rem, 5.067vw, 3.8rem);
        padding-bottom: clamp(2.4rem, 5.333vw, 4.0rem);
    }

    .section--padded-cards {
        padding-top: clamp(1.8rem, 4.0vw, 3.0rem);
        padding-bottom: clamp(2.4rem, 5.067vw, 3.8rem);
    }

    hr + .section--padded {
        padding-top: clamp(0.5rem, 1.333vw, 1.0rem);
    }

    hr + .section--padded-title {
        padding-top: clamp(1.0rem, 2.667vw, 2.0rem);
    }

    /* Block */
    .block+.block { margin-top: clamp(2vw, 4vw, 3rem); }

    /* Grids */
    .grid-3 {
        grid-column-gap: 2.5vw;
        grid-row-gap: 2.5vw;
    }

    .grid-3-overlay {
        grid-column-gap: 2.5vw;
        grid-row-gap: 2.5vw;
    }

    .card-overlay__text { font-size: clamp(0.7rem, 1.6vw, 0.8rem); }
    .card-image__title { font-size: clamp(1.2rem, 2.2vw + 0.1rem, 1.65rem); }
    .card-image__link { font-size: clamp(0.7rem, 1vw + 0.2rem, 0.85rem); }

    /* Banner */
    .banner-promo__text div { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
    .banner-promo__text div+div { font-size: clamp(1rem, 1.6vw, 1.2rem); }

    .btn-banner {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
        margin-top: clamp(1.1rem, 2.933vw, 2.2rem);
        padding: clamp(0.6rem, 1.333vw, 1rem) clamp(0.8rem, 1.6vw, 1.2rem);
    }

    /* Link arrow */
    .link-arrow {
        font-size: clamp(0.9rem, 1.133vw, 0.85rem);
        margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
    }

    /* Feature row */
    .feature-row { gap: 30px; }

    /* Button */
    button {
        margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
        font-size: clamp(1.0rem, 1.867vw, 1.4rem);
    }
}

@media screen and (max-width: 1000px) {
    .grid-order { grid-template-columns: 1fr; }
}

@media screen and (max-width: 900px) {
    :nth-child(2 of .td-hide-canvas) { display: none; }

    /* Timeline */
    .timeline-item {
        flex-direction: column;
        gap: 0.3rem;
    }
    .timeline-date {
        text-align: left;
        flex: none;
    }
    .timeline-date::after {
        display: none;
    }
    .timeline-line {
        display: none;
    }
    .dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    /* Announcement */
    .announce {
        max-width: calc(100% - 30px);
        font-size: 0.74rem;
    }

    /* Tables */
    :nth-child(2 of .td-hide-sm) { display: none; }
    th span { display: none; }
    table.narrow { width: 100%; }
    table.times td { width: auto; }

    /* Hours blocks */
    .hours-exceptions .exc-date { min-width: 4.5rem; font-size: 0.7rem; }

    /* Show at medium */
    .show-at-medium { display: block; }

    /* Grids */
    .grid-2 { grid-template-columns: repeat(2, 1fr); }

    .grid-2-product { grid-template-columns: 1fr; grid-row-gap: 20px; }
    .grid-2-product .order-last-mobile { order: 2; }
    .grid-2-product--editorial,
    .grid-2-product--editorial-reversed { grid-template-columns: 1fr; gap: 1.25rem; }

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

    .template-gallery img { width: 110px; }

    .grid-2-feature {
        grid-template-columns: 1fr;
        grid-row-gap: 10px;
    }

    .grid-2-feature p { text-align: center; }
    .grid-2-feature+.grid-2-feature { margin-top: 2rem; }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-order { border-radius: 0; }

    .card-order {
        grid-template-columns: auto 1fr auto auto;
        grid-template-rows: auto;
        padding: 1rem 1.25rem;
    }

    .card-order__icon {
        grid-row: 1;
        width: 32px;
        height: 32px;
        margin-right: 1rem;
    }

    .card-order__icon svg {
        width: 32px;
        height: 32px;
    }

    .card-order__title {
        margin-bottom: 0;
    }

    .card-order__desc {
        display: none;
    }

    .card-order__info {
        display: none;
    }

    .card-order__cta-old {
        grid-column: 3;
        grid-row: 1;
    }

    .card-order__cta {
        grid-column: 4;
        grid-row: 1;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 40px;
        grid-row-gap: 30px;
    }

    .grid-4.tricon {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 40px;
        grid-row-gap: 30px;
    }

    .grid-4 svg { width: 40px; height: 40px; }
    .grid-4.tricon div:last-child { grid-column: span 2; }

    /* Flex */
    .flex-2-narrow { width: 90%; }
    .columns-2 { column-count: 1; }

    /* Icon row */
    .icon-row svg { width: 40px; height: 40px; }
    .icon-row div { padding-top: 0.35rem; }

    /* Feature row */
    .feature-row {
        display: block;
        width: 100%;
    }

    .feature-row>div { width: 100%; }
    .feature-row>div+div { margin-top: 15px; }

    /* Contact minimal */
    .contact-minimal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-minimal table {
        width: auto;
    }

    /* Banner */
    .btn-banner { border-radius: 5px; }
    .btn-banner span { display: none; }
    .btn-banner:after { content: 'Beställ här'; }
    .banner-promo__images a:nth-child(2) { display: none; }

    /* Review Carousel */
    .review-card { flex: 0 0 calc(50% - 10px); }

    /* Footer */
    .footer__nav { justify-content: space-evenly; gap: 0; }

    /* Form Guide */
    .form-option {
        grid-template-columns: 2.4rem 1fr;
        gap: 0.8rem;
    }

    .form-option__image-wrap {
        grid-column: 2;
    }

    .form-option__body {
        grid-column: 2;
    }
}

@media screen and (max-width: 550px) {
    /* Staff grid */
    .staff-grid { grid-template-columns: 1fr; }

    /* Tables */
    .td-hide-sm { display: none; }
    .td-hide-canvas { display: none; }

    th, td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }

    .contact-minimal table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }

    /* Terms page */
    .term { grid-template-columns: 2rem 1fr; gap: 0 0.8rem; }
    .term-number { font-size: 1.2rem; }
    .term--company .info-grid { grid-template-columns: 1fr; }
    .terms-footer { flex-direction: column; gap: 0.8rem; }

    /* Company info bar */
    .ci-bar {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }


    /* Review Carousel */
    .review-card { flex: 0 0 calc(85% - 10px); }

    /* Grids */
    .grid-3 { grid-template-columns: 1fr; }

    .card-image img {
        object-fit: cover;
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .card-image.rectangle img {
        object-fit: scale-down;
        aspect-ratio: auto;
        height: auto;
        max-width: 70%;
        object-position: top right;
    }

    .card-image__link { margin-bottom: 0px; }
    .grid-3 hr { display: block; }

    .grid-3-overlay {
        grid-template-columns: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 15px;
    }

    .card-overlay img {
        object-fit: cover;
        width: 100vw;
        height: 150px;
    }

    .card-overlay__text { font-size: clamp(0.75rem, 3.5vw, 0.9rem); }
    .grid-4 { grid-column-gap: 30px; }

    /* Flex */
    .flex-2-narrow { width: 100%; }

    /* Banner */
    .banner-promo__text div+div { display: none; }

    /* Link arrow */
    .link-arrow svg { display: none; }

    /* Department cards */
    .dept-grid {
        grid-template-columns: 1fr;
    }

    .certified-row {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .certified-row__divider {
        width: 60px;
        height: 1px;
    }

    .certified-row__text p {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    /* Announcement */
    .announce {
        width: calc(100% - 30px);
        white-space: normal;
    }
    .announce__text {
        text-overflow: clip;
    }

    /* Header */
    .header__bar-item.right {
        margin-left: 0;
        margin-right: 0;
    }

    .header__bar-content { justify-content: space-between; }
    .header__bar-item span { display: none; }

    /* Step Cards */
    .step-cards { grid-template-columns: 1fr; }

    /* Format Cards */
    .format-cards { grid-template-columns: 1fr; }

    /* Footer */
    footer a span { display: none; }

    /* Form Guide */
    .form-option {
        grid-template-columns: 1fr;
    }

    .form-option__num {
        font-size: 1.2rem;
        text-align: left;
    }

    .form-option__image-wrap,
    .form-option__body {
        grid-column: 1;
    }

    /* Order Cards */
    .card-order__cta-old {
        font-size: 0;
        padding: 9px 12px;
    }
    .card-order__cta-old::after {
        content: "Gamla";
        font-size: 0.65rem;
    }
}

/* 360px — Delivery KK stacks to column on narrowest devices */
@media screen and (max-width: 360px) {
    .delivery-kk {
        flex-direction: column;
        max-width: 300px;
    }
    .delivery-kk__sep {
        width: 80px;
        height: 1px;
    }
    .delivery-kk__col {
        padding: 1.2rem 1rem;
    }
    .delivery-kk--multi {
        max-width: 360px;
    }
    .delivery-kk--multi .delivery-kk__col {
        padding: 1.8rem 1.5rem;
    }
    .delivery-kk--multi .delivery-kk__sep {
        width: 80px;
        height: 1px;
        align-self: auto;
    }
}
