.ommd-product-share {
    margin-top: 15px;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
	margin-bottom: 20px;
}

.ommd-product-share .share-label {
    font-weight: 600;
    color: #2D3F59;
    margin-right: 5px;
}

.ommd-product-share .share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #E2F5FB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D3F59;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    outline: none;
    border: none;
}

/* Hover/focus effect */
.ommd-product-share .share-btn:hover,
.ommd-product-share .share-btn:focus {
    background: #17414F;
    color: #ffffff;
}

/* Tooltip (custom) */
.ommd-product-share .share-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #17414F;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}

.ommd-product-share .share-btn:hover::after,
.ommd-product-share .share-btn:focus::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Copied state tooltip override */
.ommd-product-share .copy-link.copied::after {
    content: 'Copied!';
    background: #2D3F59;
}
