.share-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.share-box span {
    font-size: 14px;
    color: #888;
    margin-right: 5px;
}

.share-box a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s ease;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 8px;
}

.share-box a.pin {
    background: #e60023;
    font-weight: 600;
    padding: 8px 14px;
}

/* Platform renkleri */
.share-box a:nth-child(2) { background: #000; }        /* X */
.share-box a:nth-child(3) { background: #1877f2; }     /* Facebook */
.share-box a:nth-child(4) { background: #e60023; }     /* Pinterest */
.share-box a:nth-child(5) { background: #0a66c2; }     /* LinkedIn */

.share-box a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}