.pinit-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
}

.pin-it-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e60023;
    color: white !important;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    opacity: 0.95;
}

.pin-it-button:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.pin-it-button svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Hover effect */
.pinit-wrapper:not(:hover) .pin-it-button[data-hover="1"] {
    opacity: 0;
    pointer-events: none;
}

/* Text shadow for better visibility */
.pin-it-button span {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}