/* ═══════════════════════════════════════════════
   SUND SANDWICH - Theme Styles
   Bootstrap-first: kun overrides og custom styling.
   Fonts: Jost (headings) + Poppins (body)
   Design system: Extracted from live Elementor site
   ═══════════════════════════════════════════════ */

:root {
	--ss-accent:      #D4789C;
	--ss-accent-dark: #C0658A;
	--ss-heading:     #292929;
	--ss-text:        #868686;
	--ss-light:       #F5F4F5;
	--ss-divider:     #DCDCDE;
	--ss-dark-teal:   #183444;
	--ss-dark:        #000000;
	--ss-muted-green: #CCD3BC;
}

/* ─── Base typography ─── */
body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--ss-text);
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Jost', sans-serif;
	color: var(--ss-accent);
}
h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: -1px;
}
h2 {
	font-size: 39px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: -1.5px;
}
h3 {
	font-size: 31.25px;
	font-weight: 700;
	line-height: 1.3em;
	letter-spacing: -1.2px;
}
h4 {
	font-size: 25px;
	font-weight: 400;
	line-height: 1.3em;
	letter-spacing: -0.5px;
}
h5 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	letter-spacing: -0.5px;
}
h6 {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ss-accent);
}
p { margin-bottom: 20px; }
a { color: var(--ss-accent); }
a:hover { color: var(--ss-accent-dark); }

/* ─── Buttons ─── */
.btn-primary {
	background-color: var(--ss-accent);
	border-color: var(--ss-accent);
	border-width: 0;
	border-radius: 5px;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 14px 30px;
	color: #fff;
	transition: background .3s, color .3s;
}
.btn-primary:hover, .btn-primary:focus {
	background-color: var(--ss-accent-dark);
	border-color: var(--ss-accent-dark);
	color: #fff;
}
.btn-primary:active {
	background-color: var(--ss-accent-dark) !important;
	border-color: var(--ss-accent-dark) !important;
}

/* ─── Forms / Inputs ─── */
.ss-form .form-control {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5em;
	background-color: var(--ss-light);
	border: 1px solid var(--ss-light);
	border-radius: 5px;
	padding: 12px 16px;
	color: var(--ss-heading);
	transition: background .3s, border-color .3s, box-shadow .3s;
}
.ss-form .form-control:focus {
	background-color: #fff;
	border-color: var(--ss-accent);
	box-shadow: 0 0 0 .2rem rgba(212,120,156,.15);
}
.ss-form .form-control::placeholder { color: #aaa; }

/* ─── Header / Navbar ─── */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 3.5em 0 0;
	opacity: 0;
	transform: translateY(-100%);
	transition: padding .3s ease, top .3s ease;
}
.site-header.scrolled {
	padding-top: 0.8em;
}
.site-header.scrolled .ss-nav-logo {
	height: 100px;
	transition: height .3s ease;
}
.ss-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 0 60px rgba(0,0,0,.1);
	padding: 1.4em 2em;
}
.ss-navbar__left,
.ss-navbar__right {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Center logo (absolute, oversized) */
.ss-navbar__logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}
.ss-nav-logo {
	height: 190px;
	width: auto;
	display: block;
	transition: height .3s ease;
}

/* Nav links */
.ss-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px;
}
.ss-nav__link {
	font-family: 'Jost', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: var(--ss-heading);
	text-decoration: none;
	transition: color .2s;
}
.ss-nav__link:hover,
.ss-nav__link.active {
	color: var(--ss-accent-dark);
}

/* CTA button */
.btn-cta {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 24px;
	white-space: nowrap;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.btn-cta__icon {
	vertical-align: -3px;
}
.btn-cta__short {
	display: none;
}

/* Burger icon (mobile) */
.ss-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}
.ss-burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ss-heading);
	border-radius: 2px;
}

/* Mobile offcanvas */
/* Mobile offcanvas */
.ss-offcanvas {
	max-width: 300px;
	border-right: none !important;
}
.ss-offcanvas .offcanvas-header {
	justify-content: flex-end;
	padding: 1.2em 1.5em 0;
}
.ss-offcanvas .offcanvas-body {
	padding: 0 2em 2em;
}

/* Logo */
.ss-offcanvas__logo {
	text-align: center;
	margin-bottom: 1.8em;
}
.ss-offcanvas__logo img {
	height: 80px;
	width: auto;
}

/* Nav links */
.ss-mobile-nav {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5em;
}
.ss-mobile-nav li {
	border-bottom: 1px solid var(--ss-divider);
}
.ss-mobile-nav li:first-child {
	border-top: 1px solid var(--ss-divider);
}
.ss-mobile-nav__link {
	display: block;
	padding: 14px 0;
	font-family: 'Jost', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: var(--ss-heading);
	text-decoration: none;
	transition: color .2s, padding-left .2s;
}
.ss-mobile-nav__link:hover,
.ss-mobile-nav__link.active {
	color: var(--ss-accent);
	padding-left: 6px;
}

/* CTA */
.ss-offcanvas__cta {
	width: 100%;
	text-align: center;
	margin-bottom: 2em;
	font-size: 13px;
}
.ss-offcanvas__cta svg { display: inline-block; }

/* Footer section */
.ss-offcanvas__footer {
	border-top: 1px solid var(--ss-divider);
	padding-top: 1.5em;
}
.ss-offcanvas__info {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--ss-text);
}
.ss-offcanvas__info svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--ss-accent);
}
.ss-offcanvas__info a {
	color: var(--ss-heading);
	text-decoration: none;
	font-weight: 500;
}
.ss-offcanvas__info a:hover {
	color: var(--ss-accent);
}

/* Social icons */
.ss-offcanvas__social {
	display: flex;
	gap: 14px;
	margin: 1.2em 0;
}
.ss-offcanvas__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ss-light);
	color: var(--ss-heading);
	transition: background .2s, color .2s;
}
.ss-offcanvas__social a:hover {
	background: var(--ss-accent);
	color: #fff;
}

/* Smiley */
.ss-offcanvas__smiley {
	margin-top: 0.8em;
}
.ss-offcanvas__smiley img {
	height: 30px;
	width: auto;
	opacity: .6;
	transition: opacity .2s;
}
.ss-offcanvas__smiley img:hover {
	opacity: 1;
}

/* ─── Hero Section ─── */
.ss-hero {
	min-height: 740px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ss-hero {
	padding-top: 90px;
}
.ss-hero__logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Front page: header same padding as scrolled */
.home .site-header {
	padding-top: 0.8em;
}
.ss-hero__logo img {
	height: 380px;
	width: auto;
	filter: drop-shadow(0 4px 30px rgba(0,0,0,.25));
}

/* Front page: hide header logo before scroll */
.home .ss-navbar__logo {
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s ease;
}
.home .ss-navbar__logo.visible {
	opacity: 1;
	pointer-events: auto;
}

/* Base section overflow */
.ss-section {
	overflow-x: hidden;
}

/* ─── Section: Intro + Pillars ─── */
.ss-section--intro {
	background: var(--ss-light);
	padding: 5em 0;
}
.ss-intro-sub {
	color: var(--ss-text);
	line-height: 1.7;
}
.ss-pillar {
	text-align: left;
}
.ss-pillar__icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: var(--ss-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
}
.ss-pillar__icon svg,
.ss-pillar__icon img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}
.ss-pillar__title {
	font-weight: 700;
	color: var(--ss-heading);
	margin-bottom: 4px;
}
.ss-pillar__text {
	font-size: 14px;
	color: var(--ss-text);
	line-height: 1.6;
	margin-bottom: 0;
}
.ss-intro__sandwich {
	border-radius: 15px;
	width: 100%;
	aspect-ratio: 9 / 10;
	object-fit: cover;
}
.ss-intro__leaf {
	position: absolute;
	right: -80px;
	top: -40px;
	pointer-events: none;
	max-width: 200px;
	z-index: 2;
}

/* ─── Section: Ice Cream ─── */
.ss-section--ice {
	background: var(--ss-dark);
	position: relative;
	padding: 5em 0;
	overflow: hidden;
}
.ss-section--ice::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.5);
	pointer-events: none;
}
.ss-section--ice .container { position: relative; z-index: 2; }
.ss-section--ice h2,
.ss-section--ice h3,
.ss-section--ice h6,
.ss-section--ice p { color: #fff; }
.ss-section--ice h6 { color: var(--ss-accent); }
.ss-ice-badge {
	display: inline-block;
	background: var(--ss-accent);
	color: #fff;
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 14px;
	border-radius: 3px;
	margin-bottom: 16px;
}
.ss-ice-img {
	border-radius: 30px;
	width: 100%;
}
.ss-ice-flavors {
	max-height: 120px;
	margin-top: 20px;
}

/* ─── Section: Juice ─── */
.ss-section--juice {
	background: linear-gradient(to bottom, #fff, var(--ss-light));
	padding: 5em 0 0;
	margin-bottom: 120px;
	overflow: visible;
}
.ss-section--juice .row {
	align-items: flex-end;
}
.ss-juice-card {
	text-align: center;
	padding: 0 20px;
	position: relative;
	margin-bottom: -100px;
}
.ss-juice-img {
	max-height: 460px;
	transition: transform .4s ease;
}
/* GSAP: juice starts above viewport */
.gsap-juice {
	opacity: 0;
	transform: translateY(-120vh);
}
.ss-juice-card:hover .ss-juice-img {
	transform: scale(1.1) rotate(3deg);
}
.ss-juice-badge {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 10px;
	z-index: 3;
	transform: rotate(-15deg);
	transition: transform .4s ease;
}
.ss-juice-badge:hover {
	transform: rotate(0deg);
}
.ss-juice-badge__price {
	font-family: 'Jost', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: var(--ss-heading);
}
.ss-juice-badge__unit {
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--ss-text);
}

/* ─── Section: Café / Besøg ─── */
.ss-section--cafe {
	padding: 5em 0;
	overflow: hidden;
}
.ss-cafe-img-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 500px;
	margin: 0 auto;
}

.ss-cafe-img {
	width: 100%;
	border-radius: 15px;
	object-fit: cover;
	position: relative;
	z-index: 2;
	aspect-ratio: 1;
}

/* ─── Section: Menu Teaser ─── */
.ss-section--menu {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 6em 0;
}
.ss-section--menu::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--ss-dark-teal);
	opacity: .3;
	pointer-events: none;
}
.ss-section--menu .container { position: relative; z-index: 2; }
.ss-section--menu h2,
.ss-section--menu p { color: #fff; }
.ss-section--menu .lead { font-size: 18px; }
.ss-section--menu .fw-bold { color: rgba(255,255,255,.85); }

/* ─── Section: Erhverv / Frokostordninger ─── */
.ss-section--erhverv {
	background: var(--ss-light);
	padding: 5em 0;
	position: relative;
	overflow: hidden;
}
.ss-section--erhverv h2 {
	font-size: 31px;
}
.ss-erhverv-img {
	max-height: 500px;
	border-radius: 15px;
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}
.ss-erhverv-leaf {
	position: absolute;
	right: -100px;
	bottom: -50px;
	max-width: 300px;
	opacity: 0;
	pointer-events: none;
}

/* ─── Section: Form + Bestillingsproces (combined) ─── */
.ss-section--form {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 6em 0 0;
	overflow: visible;
}
.ss-section--form::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(255,255,255,.1) 0%, rgba(255,255,255,.85) 45%, rgba(255,255,255,.92) 100%);
	pointer-events: none;
}
.ss-section--form .gsap-fade-right h2 {
	font-size: 31px;
}
.ss-section--form .container { position: relative; z-index: 2; }
.ss-form-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 60px rgba(0,0,0,.15);
	padding: 3em;
	margin-bottom: -80px;
	position: relative;
	z-index: 10;
}
.ss-form-card h2 { margin-bottom: 10px; }
.ss-form-card p { color: var(--ss-text); line-height: 1.7; }
.ss-form-label {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--ss-heading);
	margin-bottom: 4px;
	display: block;
}
.ss-form-response {
	margin-top: 16px;
	font-weight: 500;
}
.ss-form-response.success { color: #16A34A; }
.ss-form-response.error { color: #c62828; }

/* Right column: process content */
.ss-section--form .ss-checklist {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
}
.ss-section--form .ss-checklist li {
	padding: 8px 0 8px 36px;
	position: relative;
	font-size: 16px;
	color: var(--ss-heading);
}
.ss-section--form .ss-checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23AAC39C'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
.ss-process-notice {
	background: rgba(212,120,156,.1);
	border: 1px solid rgba(212,120,156,.3);
	border-radius: 10px;
	padding: 16px 20px;
	margin-top: 24px;
	color: var(--ss-heading);
	font-size: 14px;
}

/* ─── Section label ─── */
.ss-label {
	font-family: 'Jost', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	color: var(--ss-heading);
	margin-bottom: 8px;
}

/* ─── Placeholders (admin preview) ─── */
.ss-placeholder {
	background: #e9ecef;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-style: italic;
	font-size: 14px;
	border-radius: 15px;
}
.ss-placeholder-sm {
	background: #e9ecef;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-style: italic;
	font-size: 14px;
	border-radius: 15px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.ss-footer__main {
	background: var(--ss-dark);
	padding: 7em 0 0;
	color: #fff;
}
.ss-footer__main > .container { max-width: 840px; }
.ss-footer__logo { max-width: 150px; height: auto; }
.ss-footer__tagline {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,.7);
	line-height: 1.6;
	max-width: 600px;
	margin: 10px auto 0;
}
.ss-footer__hr {
	border-top: 1px solid rgba(255,255,255,.5);
	margin: 2em 0;
}
.ss-footer__columns h5 {
	font-family: 'Jost', sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}
.ss-footer__columns p {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	margin-bottom: 4px;
	color: rgba(255,255,255,.75);
}
.ss-footer__columns a { color: rgba(255,255,255,.75); }
.ss-footer__columns a:hover { color: var(--ss-accent); }

/* Social icons */
.ss-footer__social {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-top: 20px;
}
.ss-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--ss-accent);
	color: #fff;
	transition: background .2s;
}
.ss-footer__social a:hover {
	background: var(--ss-accent-dark);
	color: #fff;
}
.ss-footer__social svg { width: 18px; height: 18px; fill: #fff; }

/* FindSmiley */
.ss-footer__smiley { max-height: 30px; }

/* Bottom: leaf divider + copyright */
.ss-footer__bottom {
	background: var(--ss-dark);
	padding: 2em 0 0;
}
.ss-footer__bottom > .container { max-width: 840px; }
.ss-footer__divider {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.ss-footer__leaf {
	max-height: 50px;
	width: auto;
	flex-shrink: 0;
}
.ss-footer__line {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,.2);
}
.ss-footer__copyright {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,.4);
	padding-bottom: 2em;
}

/* ─── GSAP initial states ─── */
.gsap-fade-up   { opacity: 0; transform: translateY(40px); }
.gsap-fade-left  { opacity: 0; transform: translateX(-40px); }
.gsap-fade-right { opacity: 0; transform: translateX(40px); }
.gsap-scale-in   { opacity: 0; transform: scale(.9); }

@media (max-width: 991px) {
	.gsap-fade-left,
	.gsap-fade-right { transform: translateX(0) translateY(40px); }
}

/* ─── Page template general ─── */
.ss-page-header {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 180px 0 80px;
	text-align: center;
	overflow: hidden;
}
.ss-page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,.55);
	pointer-events: none;
}
.ss-page-header .container { position: relative; z-index: 2; }
.ss-page-header h1 {
	margin-bottom: 8px;
	opacity: 0;
	transform: translateY(40px);
}
.ss-page-header p {
	color: var(--ss-text);
	font-size: 16px;
	max-width: 600px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(30px);
}

/* Menukort: full-width stacked images */
.ss-menukort-images {
	line-height: 0;
}
.ss-menukort-images img {
	width: 100%;
	display: block;
}
.page-template-page-menukort .ss-footer__main {
	padding-top: 2em;
}

/* Alt section (grey bg) */
.ss-section--alt {
	background: var(--ss-light);
	overflow: hidden;
}

/* Om Sund: first section pillars */
.ss-om-values .ss-pillar__icon {
	width: 50px;
	height: 50px;
}
/* Om Sund: second section leaf */
.ss-om-leaf {
	display: block;
	max-height: 50px;
	margin: 0 auto 16px;
}
/* Om Sund: vision/mission cards */
.ss-om-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 15px;
	padding: 2.5em;
	height: 100%;
}
.ss-om-card h3 {
	margin-bottom: 16px;
}
.ss-om-card p {
	color: var(--ss-text);
	line-height: 1.7;
	margin-bottom: 0;
}
.ss-om-card--accent {
	background: var(--ss-accent);
	border-color: var(--ss-accent);
}
.ss-om-card--accent h3,
.ss-om-card--accent p {
	color: #fff;
}

/* Om Sund: sektion 3 – Juice CTA */
.ss-section--om-cta {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 6em 0;
	overflow: hidden;
}
.ss-section--om-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.45);
	pointer-events: none;
}
.ss-section--om-cta .container { position: relative; z-index: 2; }
.ss-section--om-cta h2,
.ss-section--om-cta p { color: #fff; }
.ss-section--om-cta h2 { margin-bottom: 16px; }
.ss-section--om-cta p { line-height: 1.7; }
.ss-section--om-cta .fw-bold { color: #fff; }

/* ─── Kontakt page ─── */
.ss-contact-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 4px 25px rgba(0,0,0,.08);
	padding: 2.5em;
	position: relative;
	overflow: visible;
	height: 100%;
}
.ss-contact-card h2 {
	font-size: 25px;
	margin-bottom: 6px;
}
.ss-contact-card > .text-muted {
	font-size: 14px;
	margin-bottom: 0;
}
.ss-contact-card hr {
	border-color: var(--ss-divider);
	margin: 1.5em 0;
}
.ss-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 1.2em;
}
.ss-contact-item:last-of-type { margin-bottom: 0; }
.ss-contact-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ss-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ss-contact-item strong {
	color: var(--ss-heading);
	font-size: 14px;
}
.ss-contact-item div:last-child {
	font-size: 14px;
	line-height: 1.6;
}
.ss-contact-item a {
	color: var(--ss-accent);
	text-decoration: none;
}
.ss-contact-item a:hover { text-decoration: underline; }
.ss-contact-leaf {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%) translateY(40px);
	width: 100px;
	opacity: 0;
	pointer-events: none;
}
.ss-contact-map {
	border-radius: 15px;
	overflow: hidden;
	height: 100%;
	min-height: 400px;
}
.ss-contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
	border: 0;
	display: block;
}

/* ─── Promo Modal ─── */
.ss-promo-modal {
	border: none;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.ss-promo-modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	z-index: 10;
	background: rgba(0,0,0,.4);
	border: none;
	color: #fff;
	font-size: 24px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: background .2s;
}

.ss-promo-modal__close:hover {
	background: rgba(0,0,0,.6);
}

.ss-promo-modal__body {
	display: flex;
	flex-direction: column;
}

.ss-promo-modal__body--has-image {
	flex-direction: row;
}

.ss-promo-modal__image {
	flex: 0 0 45%;
	max-width: 45%;
}

.ss-promo-modal__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ss-promo-modal__content {
	flex: 1;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ss-promo-modal__heading {
	font-size: 28px;
	font-weight: 700;
	color: var(--ss-heading);
	margin-bottom: 12px;
	line-height: 1.2;
}

.ss-promo-modal__text {
	font-size: 16px;
	color: var(--ss-text);
	line-height: 1.6;
	margin-bottom: 24px;
}

.ss-promo-modal__btn {
	align-self: flex-start;
	font-size: 15px;
	padding: 12px 28px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
	h1 { font-size: 37px; }
	h2 { font-size: 31px; }
	h3 { font-size: 25px; }
	h4 { font-size: 21px; }
	h5 { font-size: 18px; }
	body { font-size: 15px; }

	.site-header { padding: 2.5em 0 0; }
	.ss-hero { min-height: 500px; background-position: center center; }
	.ss-hero__logo img { height: 280px; }
	.ss-page-header { padding: 150px 0 60px; }
	.ss-form-card { padding: 2.5em; }
	.ss-contact-map { min-height: 350px; }
	.ss-contact-map iframe { min-height: 350px; }
}

/* Mobile */
@media (max-width: 767px) {
	/* Prevent horizontal scroll from any section */
	.ss-section,
	.ss-section--menu { overflow: hidden; }

	h1 { font-size: 28px; letter-spacing: -0.5px; }
	h2 { font-size: 25px; letter-spacing: -1px; }
	h3 { font-size: 22px; letter-spacing: -0.8px; }
	h4 { font-size: 20px; }
	h5 { font-size: 16px; }
	body { font-size: 14px; }

	.site-header {
		padding: 1.5em 0 0;
	}
	.ss-navbar {
		padding: .4em .8em;
	}
	.ss-nav-logo {
		height: 90px;
	}
	.site-header.scrolled {
		padding-top: 0.2em;
	}
	.site-header.scrolled .ss-nav-logo {
		height: 48px;
	}
	.btn-cta {
		font-size: 9px;
		padding: 5px 10px;
		letter-spacing: 0.2px;
		gap: 3px;
	}
	.btn-cta__icon {
		width: 12px;
		height: 12px;
	}
	.btn-cta__full { display: none; }
	.btn-cta__short { display: inline; }

	.ss-hero { min-height: 420px; background-position: 50% center; padding-top: 50px; }
	.ss-hero__logo img { height: 270px; }
	.ss-promo-modal__body--has-image { flex-direction: column; }
	.ss-promo-modal__image { flex: none; max-width: 100%; max-height: 200px; overflow: hidden; }
	.ss-promo-modal__content { padding: 28px 24px; }
	.ss-promo-modal__heading { font-size: 22px; }
	.ss-promo-modal__text { font-size: 14px; }
	.ss-page-header { padding: 100px 0 40px; }

	.ss-section--intro,
	.ss-section--ice,
	.ss-section--juice,
	.ss-section--cafe,
	.ss-section--erhverv { padding: 3em 0; }

	.ss-section--menu { padding: 4em 0; }
	.ss-section--form { padding: 3em 0 0; overflow-x: hidden; }

	/* Leaves on mobile — smaller + contained */
	.ss-intro__leaf {
		max-width: 100px;
		right: -20px;
		top: -20px;
		opacity: .6;
	}
	.ss-erhverv-leaf {
		max-width: 120px;
		right: -20px;
		bottom: -20px;
	}

	.ss-form-card { padding: 2em 1.5em; margin-bottom: -60px; }
	.ss-contact-card { padding: 2em 1.5em; }
	.ss-contact-map { min-height: 280px; }
	.ss-contact-map iframe { min-height: 280px; }
	.ss-juice-badge { width: 80px; height: 80px; }
	.ss-juice-badge__price { font-size: 24px; }
	.ss-juice-badge__unit { font-size: 9px; }
	.ss-section--juice { margin-bottom: 60px; }
}

/* Small buttons on mobile */
@media (max-width: 575px) {
	.btn-primary { padding: 12px 24px; font-size: 11px; }
}

/* ─── Mobile bottom nav ─── */
/* ─── Open / Closed Status Badge ─── */
.ss-status-indicator {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 600;
	font-family: 'Jost', sans-serif;
	padding: 4px 10px;
	border-radius: 20px;
	line-height: 1;
}
.ss-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* Open */
.ss-status-indicator[data-status="open"] {
	background: #DCFCE7;
}
.ss-status-indicator[data-status="open"] .ss-status-dot { background: #22C55E; }
.ss-status-indicator[data-status="open"] .ss-status-text { color: #16A34A; }

/* Closed */
.ss-status-indicator[data-status="closed"] {
	background: #FEE2E2;
}
.ss-status-indicator[data-status="closed"] .ss-status-dot { background: #EF4444; }
.ss-status-indicator[data-status="closed"] .ss-status-text { color: #DC2626; }

/* Opening soon */
.ss-status-indicator[data-status="opening-soon"] {
	background: #FEF3C7;
}
.ss-status-indicator[data-status="opening-soon"] .ss-status-dot { background: #F59E0B; }
.ss-status-indicator[data-status="opening-soon"] .ss-status-text { color: #D97706; }

/* Closing soon */
.ss-status-indicator[data-status="closing-soon"] {
	background: #FEF3C7;
}
.ss-status-indicator[data-status="closing-soon"] .ss-status-dot { background: #F59E0B; }
.ss-status-indicator[data-status="closing-soon"] .ss-status-text { color: #D97706; }

.ss-status-indicator[data-status="open"] .ss-status-dot {
	animation: ss-pulse 2s ease-in-out infinite;
}
@keyframes ss-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .5; }
}

/* Offcanvas status */
.ss-offcanvas__status {
	padding: 0 0 12px;
	border-bottom: 1px solid #eee;
	margin-bottom: 12px;
}
.ss-offcanvas__status .ss-status-indicator {
	font-size: 13px;
	padding: 6px 14px;
}

/* ─── Mobile Bottom Nav ─── */
.ss-bottomnav {
	display: none;
}
@media (max-width: 991px) {
	.ss-bottomnav {
		display: flex;
		flex-direction: column;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 990;
		background: #fff;
		box-shadow: 0 -1px 12px rgba(0,0,0,.08);
		padding: 0;
		padding-bottom: env(safe-area-inset-bottom, 0px);
	}
	.ss-bottomnav__status {
		display: flex;
		justify-content: center;
		padding: 5px 0;
		border-bottom: 1px solid #f0f0f0;
	}
	.ss-bottomnav__status .ss-status-indicator {
		font-size: 11px;
	}
	.ss-bottomnav__links {
		display: flex;
		padding: 8px 0;
	}
	.ss-bottomnav__item {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 3px;
		text-decoration: none;
		color: #888;
		font-size: 11px;
		font-weight: 600;
		transition: color .15s;
		border-right: 1px solid #eee;
	}
	.ss-bottomnav__item:last-child {
		border-right: none;
	}
	.ss-bottomnav__item:hover,
	.ss-bottomnav__item:active {
		color: var(--ss-accent-dark);
	}
	.ss-bottomnav__item svg {
		flex-shrink: 0;
	}
	.ss-bottomnav__item--cta {
		color: #22C55E;
	}
	.ss-bottomnav__item--cta:hover,
	.ss-bottomnav__item--cta:active {
		color: #16A34A;
	}

	/* Footer padding for bottom nav */
	.ss-footer__bottom {
		padding-bottom: 70px;
	}
}
