/* =========================================================================
   Partyservice Breda — theme styles (lean, dependency-free)
   Fonts: Bree Serif (headings), Poppins (body). Brand red: #DD3333.
   ========================================================================= */

:root {
	--psb-accent:      #DD3333;
	--psb-accent-dark: #b52626;
	--psb-ink:         #23272b;
	--psb-muted:       #6b7178;
	--psb-bg:          #ffffff;
	--psb-bg-soft:     #f6f4f0;
	--psb-border:      #e6e2db;
	--psb-radius:      10px;
	--psb-maxw:        1200px;
	--psb-topbar-bg:   #262729; /* matches live footer/top bar */
	--psb-header-h:    84px;
}

/* ---- Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--psb-ink);
	background: var(--psb-bg);
	line-height: 1.6;
	font-size: 16px;
}
h1, h2, h3, h4, h5 {
	font-family: "Bree Serif", Georgia, serif;
	line-height: 1.2;
	color: var(--psb-ink);
	margin: 0 0 0.5em;
}
a { color: var(--psb-accent); text-decoration: none; }
a:hover { color: var(--psb-accent-dark); }
img { max-width: 100%; height: auto; display: block; }

.psb-container { max-width: var(--psb-maxw); margin: 0 auto; padding: 0 20px; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.psb-skip-link:focus {
	position: fixed; left: 12px; top: 12px; z-index: 1000;
	background: #fff; padding: 10px 16px; border-radius: 6px;
	clip: auto; width: auto; height: auto;
}
.psb-icon { display: inline-block; vertical-align: middle; }

/* ---- Buttons ------------------------------------------------------------ */
.psb-btn, .button, button.psb-search-submit {
	display: inline-block;
	background: var(--psb-accent);
	color: #fff;
	padding: 12px 28px;
	border: 0;
	border-radius: 999px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background .16s ease;
}
.psb-btn:hover, .button:hover { background: var(--psb-accent-dark); color: #fff; }

/* =========================================================================
   HEADER
   ========================================================================= */
.psb-topbar {
	background: var(--psb-topbar-bg);
	color: #cfd4d9;
	font-size: 0.85rem;
}
.psb-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
	flex-wrap: wrap;
}
.psb-topbar__tagline { margin: 0; font-style: italic; }
.psb-topbar__contact {
	list-style: none; display: flex; gap: 22px; margin: 0; padding: 0;
}
.psb-topbar__contact a {
	color: #e9edf1; display: inline-flex; align-items: center; gap: 7px;
}
.psb-topbar__contact a:hover { color: #fff; }
.psb-topbar__contact .psb-icon { color: var(--psb-accent); }

.psb-header__main {
	background: #fff;
	border-bottom: 1px solid var(--psb-border);
}
.psb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--psb-header-h);
}
.psb-branding img, .custom-logo { max-height: 60px; width: auto; }
.psb-logo-text {
	font-family: "Bree Serif", serif;
	font-size: 1.6rem;
	color: var(--psb-ink);
}

/* Sticky */
.psb-header--sticky.is-stuck .psb-header__main {
	position: fixed; top: 0; left: 0; right: 0; z-index: 900;
	box-shadow: 0 4px 18px rgba(0,0,0,.08);
	animation: psb-drop .25s ease;
}
.psb-header--sticky.is-stuck { padding-bottom: var(--psb-header-h); }
@keyframes psb-drop { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Primary menu */
.psb-nav { display: flex; align-items: center; }
.psb-menu {
	list-style: none; display: flex; gap: 4px; margin: 0; padding: 0;
}
.psb-menu li { position: relative; }
.psb-menu a {
	display: block;
	padding: 12px 14px;
	color: var(--psb-ink);
	font-weight: 500;
	border-radius: 6px;
}
.psb-menu > li > a::after {
	content: ""; display: block; height: 2px; width: 0; background: var(--psb-accent);
	transition: width .2s ease; margin-top: 4px;
}
.psb-menu > li:hover > a::after,
.psb-menu > li.current-menu-item > a::after { width: 100%; }
.psb-menu a:hover { color: var(--psb-accent); }
.psb-menu .current-menu-item > a { color: var(--psb-accent); }

/* Dropdowns */
.psb-menu ul.sub-menu {
	list-style: none; margin: 0; padding: 8px;
	position: absolute; top: 100%; left: 0; min-width: 220px;
	background: #fff; border: 1px solid var(--psb-border); border-radius: var(--psb-radius);
	box-shadow: 0 12px 30px rgba(0,0,0,.1);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: .18s ease; z-index: 950;
}
.psb-menu li:hover > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.psb-menu ul.sub-menu a { padding: 9px 12px; font-weight: 400; }

.psb-nav__toggle, .psb-search-toggle, .psb-search-close {
	background: none; border: 0; cursor: pointer; color: var(--psb-ink);
	padding: 8px; display: inline-flex; align-items: center;
}
.psb-nav__toggle { display: none; }

.psb-header__actions { display: flex; align-items: center; gap: 6px; }
.psb-cart-link { position: relative; color: var(--psb-ink); display: inline-flex; padding: 8px; }
.psb-cart-link:hover { color: var(--psb-accent); }
.psb-cart-count {
	position: absolute; top: 0; right: 0;
	background: var(--psb-accent); color: #fff; font-size: 11px; font-weight: 700;
	min-width: 17px; height: 17px; line-height: 17px; text-align: center; border-radius: 999px;
}

/* Search panel */
.psb-search-panel {
	background: var(--psb-bg-soft); border-bottom: 1px solid var(--psb-border);
	padding: 18px 0;
}
.psb-search-panel .psb-container { display: flex; align-items: center; gap: 12px; }
.psb-search-form { display: flex; flex: 1; gap: 8px; }
.psb-search-field {
	flex: 1; padding: 12px 16px; border: 1px solid var(--psb-border);
	border-radius: 999px; font-family: inherit; font-size: 1rem;
}
.psb-search-submit { border-radius: 999px; padding: 12px 18px; }

/* =========================================================================
   CONTENT
   ========================================================================= */
.psb-site-content { min-height: 40vh; }
.psb-content-area {
	display: grid; grid-template-columns: 1fr 300px; gap: 40px;
	padding: 48px 20px;
}
.psb-content-area--full { grid-template-columns: 1fr; }
@media (max-width: 900px) { .psb-content-area { grid-template-columns: 1fr; } }

.psb-page-header { margin-bottom: 28px; }
.psb-page-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.psb-entry { font-size: 1.05rem; }
.psb-entry img { border-radius: var(--psb-radius); }

.psb-meta { color: var(--psb-muted); font-size: 0.9rem; margin-bottom: 10px; }
.psb-meta__author { margin-left: 10px; }

/* Blog cards */
.psb-post-list { display: grid; gap: 28px; }
.psb-post-card {
	display: grid; grid-template-columns: 260px 1fr; gap: 22px;
	border: 1px solid var(--psb-border); border-radius: var(--psb-radius); overflow: hidden;
	background: #fff;
}
.psb-post-card__media img { height: 100%; object-fit: cover; }
.psb-post-card__body { padding: 20px 22px; }
.psb-post-card__title { font-size: 1.35rem; margin-bottom: 6px; }
.psb-readmore { font-weight: 600; }
@media (max-width: 640px) { .psb-post-card { grid-template-columns: 1fr; } }

.psb-sidebar .widget { margin-bottom: 32px; }
.widget-title { font-size: 1.15rem; margin-bottom: 12px; }

/* Pagination */
.pagination, .woocommerce-pagination { margin-top: 36px; }
.pagination .page-numbers, .woocommerce-pagination .page-numbers {
	display: inline-block; padding: 8px 14px; border: 1px solid var(--psb-border);
	border-radius: 6px; margin: 2px; color: var(--psb-ink);
}
.pagination .current, .woocommerce-pagination .current {
	background: var(--psb-accent); color: #fff; border-color: var(--psb-accent);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.psb-footer { margin-top: 0; }
.psb-footer__widgets { background: var(--psb-topbar-bg); color: #b9bdc2; padding: 64px 0 0; }
.psb-footer__cols { display: grid; gap: 40px; }
.psb-footer__cols--1 { grid-template-columns: 1fr; }
.psb-footer__cols--2 { grid-template-columns: repeat(2, 1fr); }
.psb-footer__cols--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .psb-footer__cols { grid-template-columns: 1fr !important; } }
.psb-footer__cols { align-items: stretch; }
.psb-footer__col { padding-bottom: 56px; }
.psb-footer__widgets .widget-title,
.psb-footer__col .widget-title { font-size: 1.35rem; color: #fff; margin-bottom: 18px; }
.psb-footer__col, .psb-footer__widgets p, .psb-footer__widgets li { color: #b9bdc2; }
.psb-footer__col a { color: #cfd4d9; }
.psb-footer__col a:hover { color: var(--psb-accent); }
.psb-footer__col ul { list-style: none; padding: 0; margin: 0; }
.psb-footer__col li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.psb-footer__col li:last-child { border-bottom: 0; }

/* Middle column = white panel that pokes up into the section above */
.psb-footer__cols--3 .psb-footer__col:nth-child(2) {
	background: #fff; color: var(--psb-ink);
	margin-top: -107px;                 /* lift the top up into the red section (≈ half the previous protrusion) */
	align-self: stretch;                /* stretch down to the copyright bar (no grey below) */
	display: flex; flex-direction: column; justify-content: flex-start;
	/* top padding == the upward lift, so the title lines up with the other columns' titles */
	padding: 107px 40px 40px;
	box-shadow: 0 24px 55px rgba(0,0,0,.28);
	position: relative; z-index: 4;
	text-align: center;
}
.psb-footer__cols--3 .psb-footer__col:nth-child(2) .widget-title { color: var(--psb-ink); font-size: 1.5rem; }
.psb-footer__cols--3 .psb-footer__col:nth-child(2) a { color: var(--psb-muted); }
.psb-footer__cols--3 .psb-footer__col:nth-child(2) a:hover { color: var(--psb-accent); }
.psb-footer__cols--3 .psb-footer__col:nth-child(2) li { border-bottom-color: var(--psb-border); }
@media (max-width: 820px) {
	.psb-footer__cols--3 .psb-footer__col:nth-child(2) { margin-top: 0; }
}

/* Underline-style inputs (callback form) */
.psb-footer__widgets input[type="text"], .psb-footer__widgets input[type="email"],
.psb-footer__widgets input[type="tel"], .psb-footer__widgets input[type="url"],
.psb-footer__widgets textarea {
	background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.4);
	border-radius: 0; color: #fff; padding: 12px 2px; width: 100%;
}
.psb-footer__widgets input:focus, .psb-footer__widgets textarea:focus {
	outline: none; border-bottom-color: var(--psb-accent);
}
.psb-footer__widgets ::placeholder { color: #9aa0a6; }
.psb-footer__widgets input[type="submit"], .psb-footer__widgets button[type="submit"],
.psb-footer__widgets .gform_button, .psb-footer__widgets .wpcf7-submit {
	background: var(--psb-accent); color: #fff; border: 0; border-radius: 999px;
	padding: 13px 34px; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: .04em;
}
.psb-footer__widgets input[type="submit"]:hover, .psb-footer__widgets .gform_button:hover { background: var(--psb-accent-dark); }

.psb-footer__bar { background: linear-gradient(90deg, #f0651f, var(--psb-accent)); color: #fff; }
.psb-footer__bar a { color: #fff; }
.psb-footer__bar .psb-copyright { color: #fff; }
.psb-footer__bar-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 14px; padding: 18px 0; flex-wrap: wrap;
}
.psb-copyright { margin: 0; font-size: 0.9rem; }
.psb-social { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.psb-social a { color: #e9edf1; }
.psb-social a:hover { color: var(--psb-accent); }

.psb-to-top {
	position: fixed; right: 22px; bottom: 22px; z-index: 800;
	width: 46px; height: 46px; border: 0; border-radius: 50%;
	background: var(--psb-accent); color: #fff; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.psb-to-top:hover { background: var(--psb-accent-dark); }

/* =========================================================================
   MOBILE NAV
   ========================================================================= */
@media (max-width: 900px) {
	.psb-nav__toggle { display: inline-flex; }
	.psb-menu {
		position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
		flex-direction: column; gap: 0; background: #fff; padding: 80px 18px 24px;
		box-shadow: -12px 0 30px rgba(0,0,0,.15);
		transform: translateX(100%); transition: transform .25s ease; z-index: 960;
		overflow-y: auto;
	}
	.psb-nav.is-open .psb-menu { transform: translateX(0); }
	.psb-menu a { padding: 14px 10px; border-bottom: 1px solid var(--psb-border); }
	.psb-menu ul.sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0; padding: 0 0 0 14px; display: none;
	}
	.psb-menu li.is-expanded > ul.sub-menu { display: block; }
	.psb-menu > li > a::after { display: none; }
	body.psb-nav-open { overflow: hidden; }
	body.psb-nav-open::after {
		content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 940;
	}
}

/* =========================================================================
   ASSORTIMENT (ACF)
   ========================================================================= */
.psb-assortiment .psb-container { max-width: var(--psb-maxw); }
.psb-hero { padding: 64px 0; text-align: center; background: var(--psb-bg-soft); }
.psb-hero--image { background-size: cover; background-position: center; color: #fff; position: relative; }
.psb-hero--image::before { content: ""; position: absolute; inset: 0; background: rgba(20,22,24,.5); }
.psb-hero .psb-container { position: relative; z-index: 1; }
.psb-hero__title { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 .3em; color: inherit; }
.psb-hero--image .psb-hero__title { color: #fff; }
.psb-hero__sub { font-size: clamp(1rem, 2vw, 1.25rem); margin: 0; opacity: .95; }

.psb-intro { max-width: 820px; margin: 48px auto; font-size: 1.05rem; line-height: 1.7; text-align: center; }

.psb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; margin: 40px 0 64px; }
.psb-card {
	background: #fff; border: 1px solid var(--psb-border); border-radius: var(--psb-radius);
	overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.psb-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.psb-card--featured { grid-column: span 2; border-color: var(--psb-accent); }
@media (max-width: 640px) { .psb-card--featured { grid-column: span 1; } }
.psb-card__media img { width: 100%; height: 220px; object-fit: cover; }
.psb-card__body { padding: 20px 22px 24px; }
.psb-card__title { font-size: 1.35rem; margin: 0 0 .25em; }
.psb-card__subtitle { color: var(--psb-accent); font-weight: 600; margin: 0 0 .6em; font-size: .95rem; }
.psb-card__text { color: var(--psb-muted); line-height: 1.6; margin: 0; }

.psb-cta { background: var(--psb-bg-soft); border-radius: var(--psb-radius); text-align: center; padding: 48px 24px; margin: 24px 0 72px; }
.psb-cta__title { font-size: 1.8rem; margin: 0 0 .4em; }
.psb-cta__text { max-width: 620px; margin: 0 auto 1.4em; color: var(--psb-muted); line-height: 1.7; }

/* =========================================================================
   WOOCOMMERCE
   ========================================================================= */
.psb-cat-banner { margin: 0 0 32px; }
.psb-cat-banner__media img { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--psb-radius); }
.psb-cat-banner__title { margin: 20px 0 10px; }
.psb-cat-banner__intro { color: var(--psb-muted); line-height: 1.7; max-width: 820px; }

.woocommerce ul.products li.product .psb-product-card { height: 100%; }
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit {
	background: var(--psb-accent); color: #fff; border-radius: 999px;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--psb-accent-dark); }
.woocommerce span.onsale { background: var(--psb-accent); }
.woocommerce div.product p.price, .woocommerce div.product span.price,
.woocommerce ul.products li.product .price { color: var(--psb-accent-dark); font-weight: 600; }
.psb-woo-main { width: 100%; }

/* =========================================================================
   HOME + ACF PAGE SECTIONS
   ========================================================================= */
.psb-eyebrow {
	text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 600;
	color: var(--psb-accent); margin: 0 0 .5em;
}
.psb-section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.psb-section-head__title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.psb-btn--light { background: #fff; color: var(--psb-accent); }
.psb-btn--light:hover { background: #f1f1f1; color: var(--psb-accent-dark); }

/* ---- Hero slider -------------------------------------------------------- */
.psb-slider { position: relative; overflow: hidden; background: #000; }
.psb-slider__track { position: relative; }
.psb-slide {
	position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
	background-size: cover; background-position: center;
	display: flex; align-items: center;
}
.psb-slide:first-child { position: relative; }
.psb-slide.is-active { opacity: 1; position: relative; z-index: 2; }
.psb-slide { min-height: clamp(360px, 56vh, 620px); }
.psb-slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.15)); }
.psb-slide__inner { position: relative; z-index: 1; color: #fff; max-width: 640px; }
.psb-slide__title { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 .3em; }
.psb-slide__sub { font-size: clamp(1.05rem, 2vw, 1.35rem); margin: 0 0 1.4em; }
.psb-slider__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
	width: 46px; height: 46px; border: 0; border-radius: 50%; cursor: pointer;
	background: rgba(255,255,255,.85); color: var(--psb-ink); font-size: 26px; line-height: 1;
}
.psb-slider__prev { left: 18px; } .psb-slider__next { right: 18px; }
.psb-slider__nav:hover { background: #fff; }
.psb-slider__dots { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 5; display: flex; gap: 10px; justify-content: center; }
.psb-slider__dot { width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; }
.psb-slider__dot.is-active { background: var(--psb-accent); border-color: var(--psb-accent); }
@media (max-width: 600px) { .psb-slider__nav { display: none; } }

/* ---- About band --------------------------------------------------------- */
.psb-about { padding: 72px 0; }
.psb-about__inner { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: center; }
.psb-about__inner--nomedia { grid-template-columns: 1fr; max-width: 820px; }
.psb-about__media img { border-radius: var(--psb-radius); width: 100%; }
.psb-about__title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.psb-about__text { color: var(--psb-muted); line-height: 1.75; margin-bottom: 1.4em; }
@media (max-width: 820px) { .psb-about__inner { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Category showcase -------------------------------------------------- */
.psb-showcase { padding: 72px 0; background: var(--psb-bg-soft); }
.psb-showcase__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.psb-tile {
	background: #fff; border-radius: var(--psb-radius); overflow: hidden; text-align: center;
	border: 1px solid var(--psb-border); transition: transform .18s ease, box-shadow .18s ease;
}
.psb-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.psb-tile__link { display: block; color: var(--psb-ink); }
.psb-tile__media img { width: 100%; height: 180px; object-fit: cover; }
.psb-tile__title { display: block; font-family: "Bree Serif", serif; font-size: 1.15rem; padding: 16px 12px; }
.psb-tile__link:hover .psb-tile__title { color: var(--psb-accent); }

/* ---- CTA band ----------------------------------------------------------- */
.psb-cta-band { background: var(--psb-accent); color: #fff; text-align: center; padding: 60px 20px; }
.psb-cta-band__title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 .4em; }
.psb-cta-band__text { max-width: 640px; margin: 0 auto 1.4em; opacity: .95; }

/* ---- ACF page rows ------------------------------------------------------ */
.psb-acf-page { display: block; }
.psb-page-header--center { text-align: center; padding: 48px 0 8px; }
.psb-row { padding: 56px 0; }
.psb-row--soft { background: var(--psb-bg-soft); }
.psb-row__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.psb-row--text .psb-row__inner { grid-template-columns: 1fr; max-width: 820px; }
.psb-row--image-left .psb-row__media { order: 0; }
.psb-row--image-right .psb-row__media { order: 2; }
.psb-row__media img { width: 100%; border-radius: var(--psb-radius); }
.psb-row__title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.psb-row__text { color: var(--psb-muted); line-height: 1.75; margin-bottom: 1.2em; }
@media (max-width: 820px) { .psb-row__inner { grid-template-columns: 1fr !important; gap: 24px; } .psb-row--image-right .psb-row__media { order: 0; } }

/* ---- Contact block ------------------------------------------------------ */
.psb-contact-block__inner { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.psb-contact-block__address { color: var(--psb-muted); line-height: 1.8; }
@media (max-width: 820px) { .psb-contact-block__inner { grid-template-columns: 1fr; gap: 24px; } }

/* =========================================================================
   REFINEMENTS (match live)
   ========================================================================= */
/* Logo appears once: hide it if it's also added as a nav menu item. */
.psb-menu .menu-item-logo,
.psb-menu li > a > img.custom-logo { display: none !important; }

/* White logo box like live */
.psb-branding {
	background: #fff; padding: 10px 18px; border-radius: 4px;
	display: inline-flex; align-items: center;
}
.psb-branding img, .custom-logo { max-height: 66px; }

/* Round red search button */
.psb-search-toggle {
	background: var(--psb-accent); color: #fff; border-radius: 50%;
	width: 46px; height: 46px; justify-content: center;
}
.psb-search-toggle:hover { background: var(--psb-accent-dark); color: #fff; }

/* Script / handwriting accents (system cursive fallback) */
.psb-script {
	font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", cursive;
	font-size: 1.35rem; color: var(--psb-accent); margin: 0 0 .4em; font-weight: 400;
}
.psb-script--light { color: #fff; opacity: .95; }

/* Outline button (About) */
.psb-btn--outline {
	background: transparent; color: var(--psb-ink);
	border: 2px solid var(--psb-border); padding: 11px 26px;
}
.psb-btn--outline:hover { background: var(--psb-ink); color: #fff; border-color: var(--psb-ink); }

/* Read-More button on hero uses an orange->red gradient like live */
.psb-slide__btn { background: linear-gradient(90deg, #f0651f, var(--psb-accent)); }
.psb-slide__btn:hover { background: linear-gradient(90deg, #d9551a, var(--psb-accent-dark)); }

/* ---- Red "Onze Diensten" section --------------------------------------- */
.psb-diensten {
	background: var(--psb-accent);
	color: #fff;
	padding: 84px 0 96px;
	position: relative;
	background-image:
		radial-gradient(circle at 12% 20%, rgba(255,255,255,.05) 0 2px, transparent 3px),
		radial-gradient(circle at 78% 65%, rgba(255,255,255,.05) 0 2px, transparent 3px);
}
.psb-diensten__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.psb-diensten__title { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }
.psb-diensten__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
	max-width: 980px; margin: 0 auto; text-align: center;
}
@media (max-width: 820px) { .psb-diensten__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; } }
@media (max-width: 460px) { .psb-diensten__grid { grid-template-columns: 1fr; } }
.psb-badge__link { color: #fff; display: block; }
.psb-badge__disc {
	width: 118px; height: 118px; margin: 0 auto 18px;
	background: #fff; color: var(--psb-accent);
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	box-shadow: 0 10px 24px rgba(0,0,0,.12);
	transition: transform .18s ease;
	/* scalloped edge like the live badges */
	-webkit-mask: radial-gradient(circle at 50% 0, transparent 9px, #000 10px) 50% 0/24px 24px repeat-x,
		radial-gradient(circle at 0 50%, transparent 9px, #000 10px) 0 50%/24px 24px repeat-y,
		linear-gradient(#000,#000) center/calc(100% - 20px) calc(100% - 20px) no-repeat;
}
.psb-badge__link:hover .psb-badge__disc { transform: translateY(-6px); }
.psb-badge__disc .psb-icon { width: 40px; height: 40px; }
.psb-badge__title { display: block; font-family: "Bree Serif", serif; font-size: 1.2rem; color: #fff; }
.psb-badge__disc img { width: 46px; height: 46px; object-fit: contain; }

/* About signature image */
.psb-about__sign { max-width: 170px; height: auto; display: block; margin: 4px 0 22px; }

/* =========================================================================
   GALLERY SLIDER + LIGHTBOX
   ========================================================================= */
.psb-gallery { position: relative; margin: 28px 0; }
.psb-gallery__track {
	display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
	scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: thin;
}
.psb-gallery__track::-webkit-scrollbar { height: 8px; }
.psb-gallery__track::-webkit-scrollbar-thumb { background: var(--psb-border); border-radius: 4px; }
.psb-gallery__slide { flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start; margin: 0; }
@media (max-width: 900px) { .psb-gallery__slide { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 560px) { .psb-gallery__slide { flex-basis: 100%; } }
.psb-gallery--single .psb-gallery__slide { flex-basis: 100%; }
.psb-gallery__btn {
	display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
	border-radius: var(--psb-radius); overflow: hidden;
}
.psb-gallery__btn img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .35s ease; }
.psb-gallery__btn:hover img { transform: scale(1.06); }
.psb-gallery__nav {
	position: absolute; top: 130px; transform: translateY(-50%);
	width: 44px; height: 44px; border: 0; border-radius: 50%;
	background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.16); color: var(--psb-ink);
	font-size: 24px; line-height: 1; cursor: pointer; z-index: 2;
}
.psb-gallery__prev { left: -8px; } .psb-gallery__next { right: -8px; }
.psb-gallery__nav:hover { background: var(--psb-accent); color: #fff; }
.psb-gallery--single .psb-gallery__nav { display: none; }
.psb-gap { width: 100%; }

.psb-lightbox {
	position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.9);
	display: flex; align-items: center; justify-content: center;
}
.psb-lightbox[hidden] { display: none; }
.psb-lightbox__img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.psb-lightbox button {
	position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer;
	border-radius: 50%; width: 52px; height: 52px; font-size: 26px; line-height: 1;
	display: flex; align-items: center; justify-content: center;
}
.psb-lightbox button:hover { background: rgba(255,255,255,.28); }
/* =========================================================================
   ASSORTIMENT — PDF folder cards (responsive 4 / 2 / 1)
   ========================================================================= */
/* Assortiment content uses the full page width (not the narrow 820px intro). */
.psb-assortiment-content {
	max-width: 1320px;
	margin: 40px auto 20px;
	padding: 0 20px;
}
.psb-assortiment-content > p { max-width: 900px; }

.pdf-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)); /* equal-width columns */
	gap: 22px;
	margin: 36px 0;
}
@media (max-width: 900px) { .pdf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdf-grid { grid-template-columns: 1fr; } }

.pdf-card {
	background: #fff;
	border: 1px solid var(--psb-border);
	border-radius: var(--psb-radius);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	text-align: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
	transition: transform .18s ease, box-shadow .18s ease;
}
.pdf-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, .10); }
.pdf-card h3 {
	font-size: 1.12rem;
	margin: 0 0 10px;
	color: var(--psb-ink);
}
.pdf-card, .pdf-card p {
	color: var(--psb-muted);
	font-size: .92rem;
	line-height: 1.55;
}
.pdf-card p { margin: 0 0 6px; }
.pdf-btn {
	margin-top: auto;
	align-self: center;
	display: inline-block;
	background: var(--psb-accent);
	color: #fff;
	padding: 11px 26px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	margin-top: 18px;
	transition: background .16s ease;
}
.pdf-btn:hover { background: var(--psb-accent-dark); color: #fff; }

/* =========================================================================
   FLATSOME LAYOUT SHORTCODES ([row]/[col]/[title]/[button])
   ========================================================================= */
.psb-sc-title {
	text-align: center;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin: 12px 0 26px;
}
.psb-sc-title span { position: relative; display: inline-block; padding-bottom: 12px; }
.psb-sc-title span::after {
	content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
	width: 54px; height: 3px; background: var(--psb-accent); border-radius: 2px;
}
.psb-sc-row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 26px;
	margin: 26px 0;
}
/* Only real columns take grid cells — hide stray <p>/<br> wpautop leaves between cols. */
.psb-sc-row > :not(.psb-sc-col) { display: none; }
.psb-sc-col { grid-column: span var(--span, 12); min-width: 0; }
@media (max-width: 860px) { .psb-sc-col { grid-column: span var(--span-sm, 12); } }
@media (max-width: 560px) { .psb-sc-col { grid-column: span 12; } }
.psb-sc-button { margin-top: 10px; }

.psb-lightbox__close { top: 22px; right: 26px; }
.psb-lightbox__prev { left: 26px; top: 50%; transform: translateY(-50%); }
.psb-lightbox__next { right: 26px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
	.psb-lightbox__prev { left: 12px; } .psb-lightbox__next { right: 12px; }
	.psb-lightbox button { width: 44px; height: 44px; }
}

/* Front-page: remove big empty gap; sections stack directly */
.psb-slider--empty .psb-slide { min-height: clamp(420px, 62vh, 640px); background: #1b1e21; }

/* =========================================================================
   FRONT-PAGE HEADER OVERLAY + HERO (match live)
   ========================================================================= */
/* No dark contact bar over the hero on the front page. */
.psb-front .psb-topbar { display: none; }

/* White header bar (menu on white background). */
.psb-front .psb-header { position: relative; z-index: 60; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.psb-front .psb-header__main { background: #fff; border-bottom: 0; }
.psb-front .psb-header__inner { align-items: center; min-height: 92px; }
.psb-front .psb-menu > li > a { color: var(--psb-ink); text-shadow: none; }
.psb-front .psb-menu > li.current-menu-item > a,
.psb-front .psb-menu > li:hover > a { color: var(--psb-accent); }
.psb-front .psb-cart-link { color: var(--psb-ink); }

/* White logo box hangs down over the hero below. */
.psb-front .psb-branding {
	background: #fff; padding: 18px 26px; border-radius: 4px;
	box-shadow: 0 16px 34px rgba(0,0,0,.20);
	position: relative; z-index: 5; margin: 4px 0 -46px;
}
.psb-front .psb-branding img, .psb-front .custom-logo { max-height: 84px; }

/* Hero: photo has food on the right, dark slate on the left → fill it and pin
   the (white) text to the left, cleared below the overlaid header. */
.psb-front .psb-slide {
	min-height: clamp(440px, 56vw, 560px);
	background-size: cover !important;
	background-position: center !important;
	align-items: center;
}
.psb-front .psb-slide__inner { max-width: 1160px; padding: 78px 20px 78px; text-align: left; }
.psb-front .psb-slide__title { text-align: left; max-width: 620px; }
.psb-front .psb-slide__sub {
	font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", cursive;
	font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}
.psb-front .psb-slide__overlay { background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.05) 75%); }

/* Live uses dots only (no side arrows), vertical on the right. */
.psb-front .psb-slider__nav { display: none; }
.psb-front .psb-slider__dots {
	flex-direction: column; left: auto; right: 34px; top: 50%; bottom: auto;
	transform: translateY(-50%); gap: 12px;
}

/* Sticky: keep the white bar fixed, shrink the logo. */
.psb-front .psb-header.is-stuck { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 4px 18px rgba(0,0,0,.1); }
.psb-front .psb-header.is-stuck .psb-branding { margin-bottom: 4px; box-shadow: none; padding: 6px 14px; }
.psb-front .psb-header.is-stuck .psb-branding img { max-height: 50px; }

@media (max-width: 900px) {
	.psb-front .psb-branding { margin-bottom: 4px; }
	.psb-front .psb-slide__inner { padding-top: 34px; }
	.psb-front .psb-branding img { max-height: 58px; }
}
