diff --git a/app/components/ProductBlocks.tsx b/app/components/ProductBlocks.tsx index 1a72c5f..1a65ee7 100644 --- a/app/components/ProductBlocks.tsx +++ b/app/components/ProductBlocks.tsx @@ -112,9 +112,9 @@ export async function ProductBlocks({ product }: { product: Product }) { key={block.id} className={ isPdpHeadingBeforeIcons - ? "w-full px-[var(--layout-padding-x)] pt-12 md:pt-16 pb-4 md:pb-6" + ? "w-full px-[var(--layout-padding-x)] pt-8 md:pt-10 pb-4 md:pb-6" : isPdpIconsAfterHeading - ? "w-full px-[var(--layout-padding-x)] pt-2 md:pt-4 pb-12 md:pb-16" + ? "w-full px-[var(--layout-padding-x)] pt-2 md:pt-4 pb-8 md:pb-10" : "w-full px-[var(--layout-padding-x)] py-12 md:py-16" } > @@ -244,11 +244,12 @@ function ProductHero({ product, shipping, taxRate, kleinunternehmer, body }: Pro return (
- {/* pb-10 md:pb-12 — mirrors the section's own pt; previously had none - at all, so the gap before the next block was entirely whatever - that block's own pt happened to be, reading as squeezed right - under the hero regardless of what followed (reported 2026-08-30). */} -
+ {/* pb-6 md:pb-8 — previously had no bottom padding at all, then + overcorrected to pb-10/12 (reported 2026-08-30 as "too much" once + seen outside the stale draft-mode render — see richTextSection's + own comment). Compact but still a real gap, more than the + heading→icons seam. */} +

@@ -353,12 +354,11 @@ function ProductPricingPanel({ product, shipping, taxRate, kleinunternehmer }: P !product.active || (product.variants.length > 0 ? product.variants.every((v) => v.outOfStock) : product.outOfStock); const anyLowStock = product.active && (product.variants.length > 0 ? product.variants.some((v) => v.lowStock) : product.lowStock); - // py-12 md:py-16 — matches the rest of the layout's rhythm; py-8 read - // as noticeably tighter than the generic block wrapper right above it - // (stepRow icons), squeezing the gap after that section (reported - // 2026-08-30). + // pt-6 md:pt-8 — compact gap after the icons (stepRow's own pb-8/10 + // already provides most of the seam); pb-12/16 kept generous below, + // same rhythm as the rest of the layout, before crossSell/footer. return ( -

+