.dog-lick-wrap {
    text-align: center;
    padding: 28px 16px;
    font-family: system-ui, sans-serif;
}

.dog-lick-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #e8790c 0%, #c45608 50%, #a03b08 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    box-shadow:
        0 4px 24px rgba(195,75,8,.44),
        inset 0 1px 0 rgba(255,255,255,.22),
        inset 0 -2px 0 rgba(0,0,0,.18);
    transition: transform .14s, box-shadow .14s, opacity .2s;
    letter-spacing: .025em;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.dog-lick-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 52%);
    border-radius: inherit;
    pointer-events: none;
}

.dog-lick-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 9px 32px rgba(195,75,8,.54),
        inset 0 1px 0 rgba(255,255,255,.22);
}

.dog-lick-btn:active {
    transform: scale(.97);
    box-shadow:
        0 2px 12px rgba(195,75,8,.38),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.dog-lick-btn:disabled {
    opacity: .6;
    cursor: default;
    transform: none !important;
    pointer-events: none;
}

.dog-lick-btn .dlb-icon {
    font-size: 23px;
    animation: dlb-paw 1.75s ease-in-out infinite;
    display: inline-block;
}

@keyframes dlb-paw {
    0%,100% { transform: rotate(-13deg) scale(1);    }
    50%      { transform: rotate(13deg)  scale(1.2); }
}
