.pig-button-4c6ec9a6 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #e2e8f0;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}
.pig-button-4c6ec9a6 .btn-text {
    transition: opacity 0.3s ease;
}
.pig-button-4c6ec9a6:hover .btn-text {
    opacity: 0;
}
.pig-button-4c6ec9a6 .pig-ears,
.pig-button-4c6ec9a6 .pig-snout {
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}
/* Ears */
.pig-button-4c6ec9a6 .pig-ears {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 15px;
}
.pig-button-4c6ec9a6 .pig-ears::before,
.pig-button-4c6ec9a6 .pig-ears::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: #ff99cc;
    border-radius: 3px;
    transform: rotate(45deg);
}
.pig-button-4c6ec9a6 .pig-ears::before { left: 0; }
.pig-button-4c6ec9a6 .pig-ears::after { right: 0; }

/* Snout */
.pig-button-4c6ec9a6 .pig-snout {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 24px;
    height: 16px;
    background-color: #ff66a3;
    border-radius: 10px;
}
.pig-button-4c6ec9a6 .pig-snout::before,
.pig-button-4c6ec9a6 .pig-snout::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 6px;
    background-color: #b33966;
    border-radius: 50%;
}
.pig-button-4c6ec9a6 .pig-snout::before { left: 5px; }
.pig-button-4c6ec9a6 .pig-snout::after { right: 5px; }

.pig-button-4c6ec9a6:hover {
    background-color: #ff99cc;
    border-radius: 40px;
    padding: 20px 40px;
}
.pig-button-4c6ec9a6:hover .pig-ears {
    opacity: 1;
    top: -8px;
}
.pig-button-4c6ec9a6:hover .pig-snout {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}