/* ===== On-Tap Handpumps ===== */
.wharf-ontap-handpumps {
    padding: 24px 20px;
    text-align: center;
    background: rgba(28, 53, 36, 0.85);
    border: 2px solid #d4a843;
    border-radius: 16px;
    display: inline-block;
    margin: 16px auto;
}

.wharf-ontap-label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.wharf-handpump-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.wharf-handpump {
    display: grid;
    grid-template-rows: 270px auto auto;
    align-items: end;
    justify-items: center;
    width: 135px;
    text-decoration: none;
    color: #d4a843;
    transition: transform 0.15s ease;
}

.wharf-handpump:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: #e8c96d;
}

.wharf-handpump-img-wrap {
    position: relative;
    width: 135px;
    height: 270px;
    align-self: end;
}

.wharf-handpump-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wharf-pump-badge {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #d4a843;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.wharf-handpump-name {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    max-width: 135px;
    line-height: 1.2;
    text-align: center;
}

.wharf-handpump-abv {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* Just Opened starburst sticker */
.wharf-just-opened {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%, 0) rotate(-30deg);
    background: #d4a843;
    color: #1c3524;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding: 10px 12px;
    clip-path: polygon(
        50% 0%, 63% 8%, 78% 2%, 80% 18%, 96% 22%, 90% 37%,
        100% 50%, 90% 63%, 96% 78%, 80% 82%, 78% 98%, 63% 92%,
        50% 100%, 37% 92%, 22% 98%, 20% 82%, 4% 78%, 10% 63%,
        0% 50%, 10% 37%, 4% 22%, 20% 18%, 22% 2%, 37% 8%
    );
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

/* Desktop: scale up handpumps ~30% */
@media (min-width: 601px) {
    .wharf-handpump {
        width: 176px;
        grid-template-rows: 351px auto auto;
    }

    .wharf-handpump-img-wrap {
        width: 176px;
        height: 351px;
    }

    .wharf-pump-badge {
        width: 88px;
        height: 88px;
    }

    .wharf-handpump-row {
        gap: 38px;
    }

    .wharf-handpump-name {
        font-size: 1.05rem;
        max-width: 176px;
    }

    .wharf-handpump-abv {
        font-size: 0.85rem;
    }

    .wharf-ontap-label {
        font-size: 1.25rem;
    }

    .wharf-just-opened {
        font-size: 0.65rem;
        padding: 13px 15px;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .wharf-handpump {
        width: 90px;
        grid-template-rows: 170px auto auto;
    }

    .wharf-handpump-img-wrap {
        width: 90px;
        height: 170px;
    }

    .wharf-pump-badge {
        width: 42px;
        height: 42px;
    }

    .wharf-handpump-row {
        gap: 20px;
    }

    .wharf-handpump-name {
        font-size: 0.68rem;
        max-width: 90px;
    }

    .wharf-just-opened {
        font-size: 0.45rem;
        padding: 7px 9px;
        bottom: 4px;
    }
}
