.dispenser-product .product-hero {
    background:
        linear-gradient(115deg, #f4f8fd 0%, #f4f8fd 58%, #eaf3ff 58%, #eaf3ff 100%);
}

.dispenser-product .product-hero::before { inset: 0 42% 0 0; }
.dispenser-product .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); }
.dispenser-product .hero-copy { padding-right: 20px; }
.dispenser-product .hero-image { min-height: 560px; }
.dispenser-product .hero-image img { height: 540px; }

.model-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: #b8cff5;
    font-size: 14px;
    font-weight: 800;
}
.model-note::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 0 5px rgba(96,165,250,.14);
}

.dispense-modes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.dispense-mode {
    min-height: 190px;
    padding: 30px;
    border-right: 1px solid var(--line);
}
.dispense-mode:last-child { border-right: 0; }
.mode-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    font-weight: 950;
}
.dispense-mode h3 { margin: 22px 0 0; font-size: 23px; }
.dispense-mode p { margin: 10px 0 0; color: var(--muted); line-height: 1.65; }

.nugget-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: stretch;
    gap: 46px;
}
.nugget-photo {
    min-height: 480px;
    overflow: hidden;
    border-radius: 8px;
    background: #071329;
}
.nugget-photo img { width: 100%; height: 100%; object-fit: cover; }
.nugget-copy { display: flex; flex-direction: column; justify-content: center; }
.nugget-points { display: grid; gap: 14px; margin-top: 28px; }
.nugget-point { padding: 18px 0 18px 22px; border-left: 3px solid #60a5fa; }
.nugget-point strong { display: block; font-size: 18px; }
.nugget-point span { display: block; margin-top: 5px; color: var(--muted); line-height: 1.6; }

.video-section { color: #fff; background: #071329; }
.video-section .kicker { color: #82b7ff; }
.video-section h2 { color: #fff; }
.video-section .lead { color: #c8d8ed; }
.video-layout {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 50px;
}
.video-frame {
    overflow: hidden;
    border: 1px solid #28426c;
    border-radius: 8px;
    background: #020617;
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
}
.video-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: contain;
    background: #020617;
}
.video-caption { margin: 0; padding: 13px 16px; color: #b9cce7; font-size: 13px; }

.installation-list { display: grid; gap: 12px; margin-top: 28px; padding: 0; list-style: none; }
.installation-list li { position: relative; padding-left: 28px; color: #d3e0f2; line-height: 1.6; }
.installation-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .56em;
    width: 10px;
    height: 10px;
    border: 2px solid #60a5fa;
    border-radius: 50%;
}
.spec-footnote { margin: 20px 0 0; color: #9fb4d1; font-size: 13px; line-height: 1.6; }

.model-switch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: 34px;
    border: 1px solid #bcd5f5;
    border-radius: 8px;
    background: #edf5ff;
}
.model-switch h3 { margin: 0; font-size: clamp(26px, 3vw, 38px); }
.model-switch p { max-width: 760px; margin: 12px 0 0; color: var(--muted); line-height: 1.7; }
.model-switch .button { white-space: nowrap; }

.gallery-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
    margin-top: 30px;
}
.gallery-shot {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.gallery-shot div { height: 430px; display: flex; align-items: center; justify-content: center; padding: 28px; }
.gallery-shot img { width: 100%; height: 100%; object-fit: contain; }
.gallery-shot figcaption { border-top: 1px solid var(--line); padding: 14px 18px; color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
    .dispenser-product .product-hero::before { inset: 0; }
    .dispenser-product .hero-grid,
    .nugget-layout,
    .video-layout { grid-template-columns: 1fr; }
    .dispenser-product .hero-image { min-height: 470px; }
    .dispenser-product .hero-image img { height: 450px; }
    .dispense-modes { grid-template-columns: 1fr; }
    .dispense-mode { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .dispense-mode:last-child { border-bottom: 0; }
    .nugget-photo { min-height: 390px; }
    .video-layout { gap: 30px; }
    .model-switch { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .dispenser-product .hero-image { min-height: 390px; padding: 10px; }
    .dispenser-product .hero-image img { height: 380px; }
    .gallery-pair { grid-template-columns: 1fr; }
    .gallery-shot div { height: 350px; }
    .nugget-photo { min-height: 320px; }
    .model-switch { padding: 24px; }
}
