/*
Theme Name:   Blocksy Child – Furniture Catalog
Theme URI:    https://creativethemes.com/blocksy/
Description:  Blocksy child theme for a B2B furniture catalog: custom product post type, SEO-friendly category pages, Enquiry Now + WhatsApp CTAs, product schema. No WooCommerce.
Author:       Your Brand Name
Template:     blocksy
Version:      1.1.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain:  bq-catalog
*/

/* ==========================================================================
   0. Design tokens
   Colours follow the Blocksy palette (Customizer → Colors) so the whole site
   stays consistent. Recommended palette is in README.md.
   ========================================================================== */
:root {
	--bq-ink:          var(--theme-palette-color-3, #1b1917);
	--bq-text:         var(--theme-palette-color-4, #4a4541);
	--bq-muted:        #7c746c;
	--bq-line:         var(--theme-palette-color-5, #e6e0d7);
	--bq-surface:      var(--theme-palette-color-8, #ffffff);
	--bq-bg:           var(--theme-palette-color-7, #f7f4ef);
	--bq-accent:       var(--theme-palette-color-1, #8a5a2b);
	--bq-accent-hover: var(--theme-palette-color-2, #6f4620);
	--bq-wa:           #1f9d55;
	--bq-wa-hover:     #17843f;
	--bq-radius:       4px;
	--bq-radius-lg:    10px;
	--bq-shadow:       0 1px 2px rgba(20, 16, 12, .05), 0 16px 40px -20px rgba(20, 16, 12, .22);
	--bq-ease:         cubic-bezier(.2, .7, .2, 1);
	--bq-gap:          clamp(16px, 2vw, 28px);
	--bq-section:      clamp(56px, 8vw, 112px);
	--bq-font-heading: "Fraunces", Georgia, "Times New Roman", serif;
	--bq-font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Typography: applied inside our templates only. For header/footer/menus set the same
   fonts in Blocksy → Customizer → General → Typography (Base: Inter, Headings: Fraunces). */
.bq-catalog .bq-wrap, .bq-home, .bq-modal { font-family: var(--bq-font-body); }
.bq-catalog .bq-wrap h1, .bq-catalog .bq-wrap h2, .bq-catalog .bq-wrap h3:not(.bq-card__title), .bq-modal__title {
	font-family: var(--bq-font-heading); font-weight: 500; letter-spacing: -.015em;
}

/* ==========================================================================
   1. Shared primitives
   ========================================================================== */
.bq-wrap { padding-top: 24px; padding-bottom: var(--bq-section); }

.bq-icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

.bq-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--bq-accent);
	margin: 0 0 12px;
	text-decoration: none;
}
.bq-eyebrow--link:hover { color: var(--bq-accent-hover); }
p.bq-eyebrow { margin-bottom: 12px; }

.bq-lead { font-size: clamp(17px, 1.25vw, 19px); line-height: 1.6; color: var(--bq-text); }

.bq-section { padding-top: var(--bq-section); }
.bq-section__head { max-width: 640px; margin-bottom: clamp(24px, 3vw, 40px); }
.bq-section__head h2 { margin: 0; letter-spacing: -.01em; }

.bq-placeholder {
	position: absolute; inset: 0;
	display: grid; place-items: center;
	background: var(--bq-bg); color: var(--bq-line);
}
.bq-placeholder .bq-icon { width: 40px; height: 40px; }

/* Buttons */
.bq-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 50px; padding: 0 22px;
	border-radius: var(--bq-radius);
	font-size: 15px; font-weight: 600; letter-spacing: .01em; line-height: 1;
	text-decoration: none; cursor: pointer; white-space: nowrap;
	border: 1.5px solid transparent;
	transition: background-color .2s var(--bq-ease), color .2s var(--bq-ease), border-color .2s var(--bq-ease), transform .2s var(--bq-ease);
}
.bq-btn:active { transform: translateY(1px); }
.bq-btn:focus-visible { outline: 2px solid var(--bq-accent); outline-offset: 3px; }

.bq-btn--primary { background: var(--bq-ink); color: #fff; border-color: var(--bq-ink); }
.bq-btn--primary:hover { background: var(--bq-accent); border-color: var(--bq-accent); color: #fff; }

.bq-btn--outline { background: transparent; color: var(--bq-ink); border-color: var(--bq-ink); }
.bq-btn--outline:hover { background: var(--bq-ink); color: #fff; }

.bq-btn--wa { background: var(--bq-surface); color: var(--bq-wa); border-color: var(--bq-wa); }
.bq-btn--wa:hover { background: var(--bq-wa); color: #fff; border-color: var(--bq-wa); }
.bq-btn--wa .bq-icon { width: 1.3em; height: 1.3em; }

.bq-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 10px; }
.bq-actions .bq-btn { flex: 1 1 200px; }

.bq-link {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 600; color: var(--bq-ink); text-decoration: none;
	border-bottom: 1px solid var(--bq-line); padding-bottom: 2px;
}
.bq-link:hover { color: var(--bq-accent); border-color: var(--bq-accent); }

/* Chips */
.bq-chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 9px 16px; border-radius: 999px;
	border: 1px solid var(--bq-line); background: var(--bq-surface);
	color: var(--bq-ink); font-size: 14px; font-weight: 500; text-decoration: none;
	transition: all .2s var(--bq-ease);
}
.bq-chip:hover { border-color: var(--bq-ink); }
.bq-chip.is-active { background: var(--bq-ink); color: #fff; border-color: var(--bq-ink); }
.bq-chip small { color: inherit; opacity: .6; }

/* Badges */
.bq-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.bq-badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 12px; border-radius: var(--bq-radius);
	background: var(--bq-bg); color: var(--bq-text); font-size: 13.5px;
}
.bq-badge strong { color: var(--bq-ink); }
.bq-badge--moq { border: 1px solid var(--bq-line); background: var(--bq-surface); }

/* Prose (long descriptions) */
.bq-prose { max-width: 760px; color: var(--bq-text); line-height: 1.75; }
.bq-prose h2, .bq-prose h3 { color: var(--bq-ink); margin-top: 1.6em; }
.bq-prose img { border-radius: var(--bq-radius-lg); }

/* ==========================================================================
   2. Breadcrumbs
   ========================================================================== */
.bq-breadcrumbs { font-size: 13.5px; color: var(--bq-muted); margin-bottom: 22px; }
.bq-breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.bq-breadcrumbs li + li::before { content: "/"; margin-right: 6px; opacity: .45; }
.bq-breadcrumbs a { color: var(--bq-muted); text-decoration: none; }
.bq-breadcrumbs a:hover { color: var(--bq-ink); }
.bq-breadcrumbs li[aria-current] { color: var(--bq-ink); }

/* ==========================================================================
   3. Single product
   ========================================================================== */
.bq-product { display: grid; gap: clamp(28px, 4vw, 64px); align-items: start; }
@media (min-width: 900px) {
	.bq-product { grid-template-columns: minmax(0, 11fr) minmax(0, 9fr); }
	.bq-product__media { position: sticky; top: 96px; }
}

.bq-product__title { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.12; letter-spacing: -.015em; margin: 0 0 14px; color: var(--bq-ink); }
.bq-product__summary { font-size: 17px; line-height: 1.6; color: var(--bq-text); margin: 0; }
.bq-product__note { font-size: 13.5px; color: var(--bq-muted); margin: 0 0 8px; }

/* Gallery */
.bq-gallery__main { margin: 0; border-radius: var(--bq-radius-lg); overflow: hidden; background: var(--bq-bg); aspect-ratio: 1 / 1; }
.bq-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .12s ease-out; will-change: transform; }
@media (hover: hover) and (pointer: fine) { .bq-gallery__main { cursor: crosshair; } }
.bq-gallery--empty { aspect-ratio: 5 / 4; border-radius: var(--bq-radius-lg); display: grid; place-items: center; background: var(--bq-bg); color: var(--bq-line); }
.bq-gallery--empty .bq-icon { width: 48px; height: 48px; }

.bq-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.bq-gallery__thumbs::-webkit-scrollbar { display: none; }
.bq-gallery__thumb {
	flex: 0 0 72px; width: 72px; height: 88px; padding: 0;
	border: 1.5px solid var(--bq-line); border-radius: var(--bq-radius); overflow: hidden;
	background: var(--bq-bg); cursor: pointer; transition: border-color .2s var(--bq-ease);
}
.bq-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bq-gallery__thumb:hover { border-color: var(--bq-muted); }
.bq-gallery__thumb.is-active { border-color: var(--bq-ink); }

/* Specs */
.bq-specs { margin-top: 28px; }
.bq-specs__title { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--bq-muted); margin: 0 0 12px; }
.bq-specs table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15px; margin: 0; border: 1px solid var(--bq-line); border-radius: var(--bq-radius-lg); overflow: hidden; background: #fff; }
.bq-specs th, .bq-specs td { padding: 14px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--bq-line); }
.bq-specs tr:last-child th, .bq-specs tr:last-child td { border-bottom: 0; }
.bq-specs th { width: 38%; font-weight: 500; color: var(--bq-muted); background: var(--bq-bg); border-right: 1px solid var(--bq-line); }
.bq-specs td { color: var(--bq-ink); font-weight: 500; }
.bq-specs td a { color: var(--bq-ink); text-decoration: underline; text-decoration-color: var(--bq-line); text-underline-offset: 3px; }
.bq-specs td a:hover { text-decoration-color: var(--bq-accent); }

.bq-link--file { margin-top: 18px; }

/* Assurances */
.bq-assurances { list-style: none; margin: 26px 0 0; padding: 20px 0 0; border-top: 1px solid var(--bq-line); display: grid; gap: 12px; }
.bq-assurances li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--bq-text); line-height: 1.45; }
.bq-assurances .bq-icon { width: 20px; height: 20px; color: var(--bq-accent); margin-top: 1px; }

/* Description */
.bq-product__description .bq-section__head { max-width: none; }

/* ==========================================================================
   4. Grid & cards
   ========================================================================== */
.bq-grid { display: grid; gap: var(--bq-gap); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 700px)  { .bq-grid--3, .bq-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bq-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .bq-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.bq-card { display: flex; flex-direction: column; min-width: 0; }
.bq-card__media {
	position: relative; display: block; overflow: hidden;
	aspect-ratio: 4 / 5; border-radius: var(--bq-radius-lg); background: var(--bq-bg);
}
.bq-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--bq-ease); }
.bq-card:hover .bq-card__media img { transform: scale(1.04); }
.bq-card__badge {
	position: absolute; top: 12px; left: 12px;
	padding: 6px 10px; border-radius: 999px;
	background: rgba(255, 255, 255, .92); color: var(--bq-ink);
	font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.bq-card__body { padding: 14px 2px 0; display: flex; flex-direction: column; gap: 4px; }
.bq-card__cat { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--bq-muted); }
.bq-card__title { font-size: 17px; line-height: 1.3; margin: 0; font-weight: 600; letter-spacing: -.005em; }
.bq-card__title a { color: var(--bq-ink); text-decoration: none; }
.bq-card__title a:hover { color: var(--bq-accent); }
.bq-card__moq { font-size: 13.5px; color: var(--bq-muted); margin: 2px 0 0; }
.bq-card__moq strong { color: var(--bq-ink); font-weight: 600; }
.bq-card__actions { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.bq-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--bq-ink); text-decoration: none; }
.bq-card__link .bq-icon { width: 16px; height: 16px; transition: transform .2s var(--bq-ease); }
.bq-card__link:hover { color: var(--bq-accent); }
.bq-card__link:hover .bq-icon { transform: translateX(3px); }
.bq-card__wa {
	display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
	border: 1px solid var(--bq-line); color: var(--bq-wa); transition: all .2s var(--bq-ease);
}
.bq-card__wa:hover { background: var(--bq-wa); border-color: var(--bq-wa); color: #fff; }
.bq-card__wa .bq-icon { width: 18px; height: 18px; }

/* Category cards */
.bq-cat-card { display: block; text-decoration: none; color: inherit; }
.bq-cat-card__media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--bq-radius-lg); overflow: hidden; background: var(--bq-bg); }
.bq-cat-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--bq-ease); }
.bq-cat-card:hover .bq-cat-card__media img { transform: scale(1.04); }
.bq-cat-card__body { display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 12px; padding: 14px 2px 0; }
.bq-cat-card__body h3 { grid-column: 1; margin: 0; font-size: 18px; font-weight: 600; color: var(--bq-ink); }
.bq-cat-card__body span { grid-column: 1; font-size: 13.5px; color: var(--bq-muted); }
.bq-cat-card__arrow { grid-column: 2; grid-row: 1 / span 2; width: 20px; height: 20px; color: var(--bq-ink); transition: transform .2s var(--bq-ease); }
.bq-cat-card:hover .bq-cat-card__arrow { transform: translateX(4px); color: var(--bq-accent); }
.bq-cat-grid .bq-grid { --bq-gap: 24px; }

.bq-empty { padding: 48px 0; text-align: center; color: var(--bq-muted); }

/* ==========================================================================
   5. Archive (catalog & category pages)
   ========================================================================== */
.bq-archive__hero { display: grid; gap: 24px; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--bq-line); margin-bottom: 24px; }
@media (min-width: 900px) { .bq-archive__hero { grid-template-columns: minmax(0, 1fr) auto; } }
.bq-archive__hero h1 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -.015em; margin: 0 0 14px; color: var(--bq-ink); }
.bq-archive__hero-text { max-width: 720px; }
.bq-archive__intro { color: var(--bq-text); font-size: 16.5px; line-height: 1.65; }
.bq-archive__intro p:last-child { margin-bottom: 0; }
.bq-archive__hero-actions .bq-actions { margin: 0; }
.bq-archive__hero-actions .bq-btn { flex: 0 0 auto; }

.bq-cat-nav, .bq-subcats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bq-subcats { margin-top: -8px; margin-bottom: 28px; }
.bq-chip--sub { background: var(--bq-bg); border-color: transparent; }
.bq-archive .bq-grid { margin-top: 12px; }

.bq-archive__content { max-width: 800px; }
.bq-archive__content .bq-prose { max-width: none; }

/* Pagination */
.bq-pagination { margin: 40px 0 0; }
.bq-pagination .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; }
.bq-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 12px; border-radius: var(--bq-radius);
	border: 1px solid var(--bq-line); color: var(--bq-ink); text-decoration: none; font-weight: 500;
}
.bq-pagination .page-numbers:hover { border-color: var(--bq-ink); }
.bq-pagination .page-numbers.current { background: var(--bq-ink); color: #fff; border-color: var(--bq-ink); }
.bq-pagination .page-numbers.dots { border: 0; }

/* ==========================================================================
   6. CTA band (product & archive footers)
   ========================================================================== */
.bq-cta-band {
	margin-top: var(--bq-section);
	padding: clamp(28px, 4vw, 48px);
	border-radius: var(--bq-radius-lg);
	background: var(--bq-ink); color: #fff;
	display: grid; gap: 24px; align-items: center;
}
@media (min-width: 900px) { .bq-cta-band { grid-template-columns: minmax(0, 1fr) auto; } }
.bq-cta-band .bq-eyebrow { color: rgba(255, 255, 255, .7); }
.bq-cta-band h2 { color: #fff; margin: 0 0 10px; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.01em; }
.bq-cta-band p:last-child { margin: 0; color: rgba(255, 255, 255, .78); max-width: 560px; }
.bq-cta-band .bq-actions { margin: 0; }
.bq-cta-band .bq-btn--primary { background: #fff; color: var(--bq-ink); border-color: #fff; }
.bq-cta-band .bq-btn--primary:hover { background: var(--bq-accent); border-color: var(--bq-accent); color: #fff; }
.bq-cta-band .bq-btn--wa { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.bq-cta-band .bq-btn--wa:hover { background: var(--bq-wa); border-color: var(--bq-wa); }

/* ==========================================================================
   7. Enquiry modal
   ========================================================================== */
.bq-modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 16px; }
.bq-modal[hidden] { display: none; }
.bq-modal__backdrop { position: absolute; inset: 0; background: rgba(20, 16, 12, .55); backdrop-filter: blur(2px); }
.bq-modal__panel {
	position: relative; width: 100%; max-width: 540px; max-height: calc(100vh - 32px); overflow: auto;
	background: var(--bq-surface); color: var(--bq-text);
	border-radius: var(--bq-radius-lg); box-shadow: var(--bq-shadow);
	padding: clamp(24px, 4vw, 40px);
	animation: bq-pop .25s var(--bq-ease);
}
@keyframes bq-pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.bq-modal__close {
	position: absolute; top: 12px; right: 12px; width: 40px; height: 40px;
	display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--bq-bg); color: var(--bq-ink); cursor: pointer;
}
.bq-modal__close:hover { background: var(--bq-line); }
.bq-modal__title { margin: 0 0 6px; font-size: 24px; letter-spacing: -.01em; color: var(--bq-ink); }
.bq-modal__hint { margin: 0 0 20px; font-size: 14.5px; color: var(--bq-muted); }
.bq-modal__form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.bq-modal__form textarea, .bq-modal__form select {
	width: 100%; border: 1px solid var(--bq-line); border-radius: var(--bq-radius); padding: 12px 14px; background: #fff; font: inherit;
}
.bq-modal__form textarea { min-height: 120px; }
.bq-modal__form button[type="submit"], .bq-modal__form input[type="submit"] {
	width: 100%; min-height: 50px; border: 0; border-radius: var(--bq-radius);
	background: var(--bq-ink); color: #fff; font-weight: 600; font-size: 15px; cursor: pointer;
}
.bq-modal__form button[type="submit"]:hover, .bq-modal__form input[type="submit"]:hover { background: var(--bq-accent); }
body.bq-modal-open { overflow: hidden; }

/* ==========================================================================
   8. Floating WhatsApp & mobile sticky bar
   ========================================================================== */
.bq-wa-float {
	position: fixed; right: 18px; bottom: 18px; z-index: 9000;
	width: 56px; height: 56px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--bq-wa); color: #fff; box-shadow: 0 10px 24px -8px rgba(31, 157, 85, .6);
	transition: transform .2s var(--bq-ease), background-color .2s var(--bq-ease);
}
.bq-wa-float:hover { transform: translateY(-2px); background: var(--bq-wa-hover); color: #fff; }
.bq-wa-float .bq-icon { width: 28px; height: 28px; }

.bq-sticky-bar { display: none; }
@media (max-width: 781px) {
	.bq-has-sticky-bar .bq-wa-float { display: none; }
	.bq-has-sticky-bar .bq-sticky-bar {
		display: flex; gap: 10px;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
		border-top: 1px solid var(--bq-line);
	}
	.bq-sticky-bar .bq-btn { flex: 1; min-height: 46px; padding: 0 12px; font-size: 14px; }
	.bq-has-sticky-bar .bq-wrap { padding-bottom: calc(var(--bq-section) + 60px); }
}

/* ==========================================================================
   9. Homepage patterns
   ========================================================================== */
.bq-hero { padding: clamp(40px, 6vw, 96px) 0; background: var(--bq-bg); }
.bq-hero h1 { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05; letter-spacing: -.02em; margin: 0 0 20px; color: var(--bq-ink); }
.bq-hero .bq-lead { margin: 0 0 24px; max-width: 560px; }
.bq-hero .bq-actions { margin: 0 0 18px; }
.bq-hero .bq-actions .bq-btn { flex: 0 1 auto; }
.bq-hero__meta { font-size: 13.5px; color: var(--bq-muted); margin: 0; }
.bq-hero__media img { border-radius: var(--bq-radius-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.bq-hero__media .wp-block-image { margin: 0; }
@media (max-width: 781px) { .bq-hero__cols { flex-direction: column-reverse; } }

.bq-band { background: var(--bq-bg); padding-bottom: var(--bq-section); }

.bq-usps, .bq-steps { gap: var(--bq-gap) !important; }
.bq-usp__icon {
	width: 52px; height: 52px; display: grid; place-items: center;
	border-radius: var(--bq-radius-lg); background: var(--bq-surface); color: var(--bq-accent);
	border: 1px solid var(--bq-line); margin-bottom: 18px;
}
.bq-usp__icon .bq-icon { width: 24px; height: 24px; }
.bq-usp h3, .bq-step h3 { font-size: 18px; margin: 0 0 8px; color: var(--bq-ink); }
.bq-usp p, .bq-step p { font-size: 15px; line-height: 1.6; color: var(--bq-text); margin: 0; }

.bq-step { padding-top: 18px; border-top: 1px solid var(--bq-line); }
.bq-step__num { font-size: 13px; font-weight: 600; letter-spacing: .1em; color: var(--bq-accent); margin: 0 0 12px !important; }

.bq-faq__item { border-bottom: 1px solid var(--bq-line); padding: 6px 0; }
.bq-faq__item summary { cursor: pointer; padding: 14px 0; font-weight: 600; font-size: 17px; color: var(--bq-ink); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.bq-faq__item summary::-webkit-details-marker { display: none; }
.bq-faq__item summary::after { content: "+"; font-weight: 400; font-size: 22px; line-height: 1; color: var(--bq-muted); transition: transform .2s var(--bq-ease); }
.bq-faq__item[open] summary::after { transform: rotate(45deg); }
.bq-faq__item p { margin: 0 0 14px; color: var(--bq-text); max-width: 700px; }

.bq-cta { background: var(--bq-ink); color: #fff; padding: var(--bq-section) 0; text-align: center; }
.bq-cta .bq-eyebrow { color: rgba(255, 255, 255, .7); }
.bq-cta h2 { color: #fff; max-width: 760px; margin: 0 auto 14px; font-size: clamp(26px, 3vw, 40px); letter-spacing: -.015em; }
.bq-cta p { color: rgba(255, 255, 255, .78); max-width: 560px; margin: 0 auto; }
.bq-cta .bq-actions { justify-content: center; margin-top: 28px; }
.bq-cta .bq-actions .bq-btn { flex: 0 1 auto; }
.bq-cta .bq-btn--primary { background: #fff; color: var(--bq-ink); border-color: #fff; }
.bq-cta .bq-btn--primary:hover { background: var(--bq-accent); border-color: var(--bq-accent); color: #fff; }
.bq-cta .bq-btn--wa { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.bq-cta .bq-btn--wa:hover { background: var(--bq-wa); border-color: var(--bq-wa); }

.bq-center { justify-content: center; margin-top: 32px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.bq-card__media img, .bq-cat-card__media img, .bq-btn, .bq-modal__panel { transition: none; animation: none; }
}

/* Product tabs */
/* .bq-tabs { border-top: 1px solid var(--bq-line); } */
.bq-tabs__nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 40px; border-bottom: 1px solid var(--bq-line); margin-bottom: 36px; }
.bq-tabs__btn { appearance: none; background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; padding: 18px 0; font: inherit; font-size: 15px; font-weight: 500; color: var(--bq-muted); cursor: pointer; white-space: nowrap; transition: color .2s; }
.bq-tabs__btn:hover { color: var(--bq-ink); }
.bq-tabs__btn.is-active { color: var(--bq-ink); border-bottom-color: var(--bq-accent); }
.bq-tabs__panel, .bq-tabs__panel .entry-content { overflow: visible; max-height: none; }
.bq-tabs__panel .bq-prose { max-width: 820px; margin: 0 auto; }
.bq-tabs .bq-specs { margin-top: 0; max-width: 820px; margin-left: auto; margin-right: auto; }
.bq-tabs__panel table { max-width: 100%; }
@media (max-width: 781px) { .bq-tabs__nav { gap: 4px 24px; } .bq-tabs__btn { padding: 14px 0; font-size: 14px; } }
.bq-tabs .bq-specs__title { display: none; }
.bq-assurances--tab { border-top: 0; padding-top: 0; margin-top: 18px; }

/* Header: blur + shadow on scroll */
header#header [data-sticky] > [data-row],
header#header [data-row="middle"] {
	transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
header#header [data-sticky*="shrink"] [data-row],
header#header [data-sticky*="yes"] [data-row] {
	background-color: rgba(247, 244, 239, .86) !important;
	-webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(27, 25, 23, .06), 0 8px 24px -12px rgba(27, 25, 23, .18);
}

.bq-related .bq-section__head { max-width: none; text-align: center; margin-left: auto; margin-right: auto; }
.bq-related .bq-grid { justify-content: center; }
@media (min-width: 1024px) { .bq-related .bq-grid--4 { grid-template-columns: repeat(4, minmax(0, 280px)); } }

/* Product card — premium */
.bq-card { border: 1px solid var(--bq-line); border-radius: 14px; background: #fff; overflow: hidden; transition: transform .35s var(--bq-ease), box-shadow .35s var(--bq-ease), border-color .35s var(--bq-ease); }
.bq-card:hover { box-shadow: 0 20px 44px -24px rgba(27, 25, 23, .28), 0 0 0 1px rgba(27, 25, 23, .04); }
.bq-card__media { border-radius: 0; }
.bq-card__media img { transition: transform .8s var(--bq-ease); }
.bq-card:hover .bq-card__media img { transform: scale(1.05); }
.bq-card__body { padding: 16px 18px 18px; gap: 5px; }
.bq-card__cat { font-size: 11px; letter-spacing: .1em; color: var(--bq-accent); }
.bq-card .bq-card__title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 18px; line-height: 1.25; letter-spacing: -.01em; }
.bq-card__moq { font-size: 13px; }
.bq-card__actions { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--bq-line); }
.bq-card__link { font-size: 13.5px; }
.bq-card__wa { width: 34px; height: 34px; background: #fff; }
@media (max-width: 600px) { .bq-card__body { padding: 12px 12px 14px; } .bq-card .bq-card__title { font-size: 15.5px; } }