.gk-share-wrapper {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.gk-share-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.gk-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gk-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    background: #6c757d;
}

.gk-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-decoration: none;
}

.gk-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.gk-share-icon svg {
    width: 100%;
    height: 100%;
}

.gk-share-weixin {
    background: #07c160;
}

.gk-share-weixin:hover {
    background: #06ad56;
}

.gk-share-weibo {
    background: #e6162d;
}

.gk-share-weibo:hover {
    background: #cf1428;
}

.gk-share-xhs {
    background: #ff2442;
}

.gk-share-xhs:hover {
    background: #e61e3b;
}

.gk-share-qq {
    background: #12b7f5;
}

.gk-share-qq:hover {
    background: #0ea5dd;
}

.gk-share-qzone {
    background: #ffce00;
    color: #333;
}

.gk-share-qzone:hover {
    background: #ffd633;
    color: #333;
}

.gk-share-copy {
    background: #6c757d;
}

.gk-share-copy:hover {
    background: #5a6268;
}

.gk-share-weixin-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.gk-share-weixin-inner {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gk-share-weixin-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.gk-share-qrcode {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gk-share-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gk-share-weixin-tip {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gk-share-weixin-close {
    padding: 10px 30px;
    background: #07c160;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.gk-share-weixin-close:hover {
    background: #06ad56;
}

.gk-share-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 100000;
    animation: gkShareFadeIn 0.3s ease;
}

@keyframes gkShareFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes gkShareFadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.gk-share-product-wrapper {
    max-width: 600px;
    margin: 30px 0;
}

.gk-share-product-wrapper .gk-share-wrapper {
    margin: 0;
}

@media (max-width: 600px) {
    .gk-share-wrapper {
        padding: 15px;
    }

    .gk-share-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .gk-share-text {
        display: none;
    }

    .gk-share-icon {
        width: 24px;
        height: 24px;
    }
}
